* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    background: #f4f8fb;
}

/* Main Layout */
.main-wrapper {
    display: flex;
    height: 100vh;
}

/* Left Section */
.left-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom left, #f7f7f7, #f7f7f7);
}

.illustration {
    width: 100%;
    max-width: 100%;
    height: 70%;
}

/* Right Section */
.right-section {
    width: 632px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 38px;
}

.logo-wrapper {
    margin-bottom: 25px;
}

.logo-img {
    width: 180px;
}

/* Login Card */
.login-card {
    width: 100%;
    background: #d7e7ef;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    animation: slideIn 0.7s ease;
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Inputs */
.form-floating input {
    border-radius: 10px;
}

.form-floating input:focus {
    box-shadow: 0 0 0 2px #1fa2c3;
}

/* Button */
.btn-login {
    background: #1fa2c3;
    color: white;
    border-radius: 8px;
    padding: 12px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-login:hover {
    background: #178aa8;
}

/* Error */
.error-message {
    color: red;
    text-align: center;
    margin-bottom: 10px;
}

/* Responsive */
@media(max-width: 992px) {
    .left-section {
        display: none;
    }

    .right-section {
        width: 100%;
    }
}