html, body {
    margin: 0;
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero {
    background-image: url('./images/freepik__talk__19842.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

#login-container {
    max-width: 400px;
    width: 100%;
    background: rgba(217, 217, 217, 0.7);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(100px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.logo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo img {
    max-width: 150px;
    height: auto;
}

.form-container h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    color: #333;
}

.form-container input[type="email"],
.form-container input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.options label input {
    margin-right: 5px;
}

.forgot-password {
    color: #007bff;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.form-container button {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-container button:hover {
    background-color: #0056b3;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: #888;
    font-weight: bold;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.separator:not(:empty)::before {
    margin-right: 10px;
}

.separator:not(:empty)::after {
    margin-left: 10px;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 15px;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    margin-top: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: 0.2s all ease;
    padding: 12px;
    background-color: #007bff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero .light {
    position: fixed;
    inset: 0;
    pointer-events: none;

    background: radial-gradient(
        circle at var(--x) var(--y),
        rgba(255,255,255,0.15) 0%,
        rgba(0,0,0,0.35) 25%,
        rgba(0,0,0,0.6) 60%
    );

    transition: background 0.05s linear;
}

.google-btn img {
    height: 20px;
    width: 20px;
    margin-right: 10px;
}

.google-btn:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    transform: translateY(-1px);
}

.signup-text {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.signup-text a {
    color: #007bff;
    text-decoration: none;
}

.signup-text a:hover {
    text-decoration: underline;
}

@media (max-width: 480px) {
    #login-container {
        padding: 30px 20px;
    }

    .form-container h1 {
        font-size: 24px;
    }

    .google-btn {
        padding: 8px 12px;
    }
}
