* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
    background-image: url("/images/background.webp");
    background-size: cover;
    background-position: center;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: row;
    padding: 20px;
}

.illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration img {
    max-width: 70%;
    height: auto;
}

.login-box {
    flex: 1;
    max-width: 350px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.login-box h1 {
    text-align: center;
    letter-spacing: 0.03em;
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 3em;
    color: #2b9c94;
}

/* Social Login Styles */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: white;
}

.social-btn:hover {
    border-color: #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 18px;
    height: 18px;
    margin-right: 10px;
}

.google-btn:hover {
    background-color: #f8f9fa;
}

.facebook-btn {
    color: #1877f2;
}

.facebook-btn:hover {
    background-color: #f0f2f5;
}

.divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    text-align: center;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: #ddd;
}

.divider span {
    padding: 0 10px;
    color: #666;
    font-size: 14px;
}

.login-box input[type="text"],
.login-box input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-box .links {
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
    margin-top: 10px;
}

.login-box .links a {
    color: #2b9c94;
    text-decoration: none;
}

.login-box label {
    font-size: 0.9em;
}

.login-box input[type="checkbox"] {
    margin-right: 5px;
}

.login-box button {
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    background-color: #2b9c94;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.login-box button:hover {
    background-color: #258a83;
}

@media (max-width: 768px) {
    .login-box {
        margin-bottom: 20px;
    }

    .container {
        flex-direction: column;
    }

    .illustration {
        margin-bottom: 20px;
    }

    .illustration img {
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    .login-box {
        padding: 20px;
        width: 100%;
    }
}

@media (min-width: 768px) {
    .login-box {
        transform: translateX(-10vw);
    }
}

@media (min-width: 1024px) {
    .login-box {
        transform: translateX(-15vw);
    }

    .illustration img {
        transform: translateX(-7vw);
    }
}