body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #071330;
    font-family: Arial, sans-serif;
}

.signup-container {
	display: flex;
	flex-wrap: wrap;
    width: 420px;
    padding: 40px;
    background: #000;
    border: 1px solid #888;
    border-radius: 35px;
    text-align: center;
}

.signup-container h1 {
    color: white;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: bold;
}

.input-box {
    width: 100%;
    padding: 14px 20px;
    margin-bottom: 15px;
    border: 1px solid #999;
    border-radius: 30px;
    background: transparent;
    color: white;
    font-size: 1.1rem;
    box-sizing: border-box;
}

.input-box::placeholder {
    color: #888;
    font-weight: 600;
}

.signup-btn {
    margin-top: 25px;
    padding: 12px 35px;
    background: red;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.signup-btn:hover {
    background: red;
}
.signup-btn a{
	color: white;
}