body {
    font-family: 'Poppins', sans-serif;
    background: #f2f5f9;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url('../images/bg.jpg');
}

.login-container {
    display: flex;
    background: white;
    width: 90%;
    max-width: 1100px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.illustration {
    flex: 1;
    background: #eaf8ff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

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

.login-form {
    flex: 1;
    padding: 50px;
}

h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

p {
    color: #666;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.btn {
    min-width: 40%;
    padding: 10px 0;
    background: #03A9F4;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.btn-primary {
    background: #03A9F4;
    color: white;
}

.btn-secondary {
    background: #f3f4f6;
    color: black;
}

.social-login {
    text-align: center;
    margin-top: 20px;
}

.social-icons img {
    width: 35px;
    margin: 0 8px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .login-container {
        flex-direction: column;
        text-align: center;
    }

    .illustration {
        padding: 20px;
    }
}


/* 
.login-block {
    background: #ffffff;
    padding: 24px 28px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    max-width: 420px;
    width: 100%;
} */

.inputs-wrapper {
    background: #f5f9fd;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e0e7f1;
}

.field-row {
    display: flex;
    align-items: center;
    padding: 14px 18px;
    position: relative;
    background-color: #f1f3f1;
    border-bottom: 5px solid #fff;
}

.field-row+.field-row {
    border-top: 1px solid #dde5f0;
}

.icon-left {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid #dde5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    background: #ffffff;
}

.field-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.field-text label {
    font-size: 11px;
    color: #a1afc2;
    margin-bottom: 2px;
}

.field-text input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #283549;
}

.field-text input::placeholder {
    color: #c0cad8;
}

.status-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00c853;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px #e0f7ea;
}

.status-icon svg {
    width: 12px;
    height: 12px;
    fill: #ffffff;
}

.options-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    font-size: 12px;
    color: #8b9ab0;
    margin-bottom: 20px;
}

.remember {
    display: flex;
    align-items: center;
    gap: 6px;
}

.remember-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #00c853;
    display: inline-block;
}

.options-row a {
    text-decoration: none;
    color: #8b9ab0;
}

.options-row a:hover {
    text-decoration: underline;
}

@media (max-width:480px) {
    .login-block {
        margin: 0 12px;
    }
}

.logo {
    width: 220px;
    display: block;
    margin: auto;
}