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

html,
body {
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
}

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

.login-section {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 50px;
    margin-bottom: 20px;
}

.login-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.login-section input {
    width: 80%;
    padding: 0.8rem;
    margin: 0.5rem 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1.3rem;
}

.login-btn {
    background-color: #fc7d54;
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 1.3rem;
    cursor: pointer;
}

.register-text {
    margin-top: 1rem;
    font-size: 1.1rem;
}

.register-text span {
    color: #fc4d32;
    cursor: pointer;
}

.register-text span a {
    color: #fc4d32;
    cursor: pointer;
    text-decoration: none;
}

.illustration-section {
    flex: 1;
    background-color: #fff5dd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.illustration {
    max-width: 400px;
    margin-bottom: 4rem;
}

.contribution-text {
    font-size: 1.3rem;
    color: #444;
}

#wrongPass {
    color: #fc4d32;
    display: none;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease-out forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-def {
    animation-delay: 0.1s;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.delay-5 {
    animation-delay: 1s;
}