* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
    font-family: 'Poppins', sans-serif;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    height: 100vh;
    width: 100vw;
}

.form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.form-box {
    width: 100%;
    max-width: 400px;
    padding: 2rem;
}

.image-section {
    flex: 1;
    background: url('/img/main.jpg') no-repeat center center;
    background-size: cover;
}

.link-muted {
    color: #666666;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    opacity: 0.35;
    text-decoration: none;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.link-muted:hover {
    opacity: 0.6;
    color: #444444;
}

.form-label {
    display: block;
    color: #666666;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .image-section {
        height: 250px;
        width: 100%;
    }
}
