/* Updated Glassmorphism Login Form */
body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: radial-gradient(circle at center, #32619d, #000000);
    color: #E0E0E0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90%;
    max-width: 450px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
    padding: 50px;
    text-align: center;
}

h2 {
    font-size: 50px;
    margin-bottom: 15px;
    color: #ffffff;
    padding: 100px;
}

p {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.85;
}

input {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 12px;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    outline: none;
    font-size: 16px;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

button {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(to right, #2193b0, #6dd5ed);
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    opacity: 0.9;
}

.social-login {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.social-login button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 10px;
    font-size: 16px;
    transition: 0.3s;
}

.social-login button:hover {
    background: rgba(255, 255, 255, 0.25);
}

.signup-link {
    margin-top: 20px;
}

.signup-link a {
    color: #6dd5ed;
    text-decoration: none;
    font-weight: bold;
}

.signup-link a:hover {
    text-decoration: underline;
}