body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    background: #fff;
}

.container {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    background: #fff;
}

.welcome-section {
    background: #A6E6A1;
    width: 100%;
    text-align: center;
    padding: 48px 20px 56px 20px;
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    animation: slideDown 0.8s ease-out;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.logo {
    width: 120px;
    margin-bottom: 24px;
    animation: fadeInScale 1s ease-out 0.3s backwards;
}

@keyframes fadeInScale {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.welcome-section h1 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #fff;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.welcome-section p {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 22px;
    margin-top: 0;
    animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

.register-btn {
    background: none;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 14px;
    padding: 12px 44px;
    font-size: 1.15rem;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out 0.9s backwards;
    text-decoration: none;
    display: inline-block;
}
.register-btn:hover {
    background: #fff;
    color: #A6E6A1;
}

.login-section {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
    background: none;
    padding: 36px 0 0 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login-section h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 36px;
    color: #222;
    letter-spacing: 0.5px;
}

form {
    width: 100%;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.input-group {
    position: relative;
    margin-bottom: 22px;
    width: 100%;
}
.input-group input {
    width: 100%;
    padding: 20px 56px 20px 22px;
    border: none;
    border-radius: 18px;
    background: #E6E6E6;
    font-size: 1.18rem;
    outline: none;
    color: #444;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 500;
    box-sizing: border-box;
}
.input-group .icon {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: #888;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Verwijder oude emoji icon stijlen */
.input-group .user::before,
.input-group .lock::before {
    content: none;
}

/* Rotatie animatie voor icons */
.input-group .icon.spin {
    animation: bounceIcon 0.5s ease-in-out;
    color: #A6E6A1;
}

@keyframes bounceIcon {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 1;
    }
    25% {
        transform: translateY(-70%) scale(0.8);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-50%) scale(1.3);
        opacity: 1;
    }
    75% {
        transform: translateY(-55%) scale(0.95);
    }
    100% {
        transform: translateY(-50%) scale(1.1);
    }
}

.forgot {
    display: block;
    margin-bottom: 28px;
    color: #444;
    text-decoration: underline;
    font-size: 1.13rem;
    transition: color 0.2s;
    font-weight: 500;
}
.forgot:hover {
    color: #A6E6A1;
}

.login-btn {
    width: 100%;
    background: #A6E6A1;
    color: #fff;
    border: none;
    border-radius: 18px;
    padding: 18px 0;
    font-size: 1.35rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 24px;
}
.login-btn:hover {
    background: #8fd88a;
}

@media (min-width: 900px) {
    .container {
        flex-direction: row;
        align-items: stretch;
        min-height: 100vh;
    }
    .welcome-section {
        flex: 1 1 0;
        width: 50vw;
        max-width: 50vw;
        min-width: 400px;
        border-radius: 0 60% 60% 0 / 0 100% 100% 0;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 0 0 0;
        animation: slideFromLeft 0.8s ease-out;
    }
    .login-section {
        flex: 1 1 0;
        max-width: 50vw;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        background: #fff;
        box-shadow: none;
        padding: 0;
    }
    form {
        max-width: 370px;
    }
}
