body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #141e30, #243b55);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
    text-align: center; /* Ensure text is centered inside the container */
}

.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

input, button {
    margin: 10px 0;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    border: none;
    box-sizing: border-box; /* Ensures padding does not affect width */
}

input {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

button {
    background: #00f7ff;
    color: #141e30;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #00c3d9;
}

.radio-group {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.radio-group label {
    margin: 0 10px;
    cursor: pointer;
}

.error {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}

.login-link {
    margin-top: 10px;
    font-size: 14px;
}

.login-link a {
    color: #00f7ff;
    text-decoration: none;
}

