/* login.css */

:root{
    --bg-color: #121315;
    --font-color: #e0eeee;
    --menu-bg-color: #a6a9b033
}

.login-hero {
    display: flex;
    min-height: 100vh;
    background-color: #ffffff;
}

.image-side {
    flex: 1;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-side img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.form-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
    padding: 40px;
    background-color: var(--bg-color);
    color: var(--font-color);
}

.login-box {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.login-box input{
    background-color: var(--menu-bg-color);
    outline: none;
    border: none;
    color: var(--font-color);
}

.login-box h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--font-color);
    margin-bottom: 10px;
}

.login-box input[type="email"],
.login-box input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border-radius: 6px;
}

.login-button {
    width: 100%;
    padding: 14px;
    background-color: #dfe2e2;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    color: #666;
    cursor: pointer;
}

.sign-up-link p{
    font-size: 16px;
}

.sign-up-link p span{
    color: #c5fcfc;
    cursor: pointer;
}


@media (max-width: 780px){
    .image-side{
        display: none;
    }
}
