* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Afacad', sans-serif;
    background-color: #ffffff;
    color: #000000;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden; 
}

.login-container {
    display: flex;
    width: 100%;
    height: 100%;
}

.hero-section {
    position: relative;
    flex: 0 0 45%;
    max-width: 648px;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.logo {
    position: absolute;
    top: 24px;
    left: 40px;
    max-width: 146px;
    height: auto;
}

.form-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    height: 100%;
}

.form-wrapper {
    width: 100%;
    max-width: 446px;
}

.form-header h1 {
    font-size: 38px; 
    font-weight: 600;
    color: #445B8B;
    line-height: 1.2;
    margin-bottom: 8px;
}

.form-header p {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 20px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.input-group label {
    font-size: 18px;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    height: 45px; 
    padding: 0 16px 0 44px;
    font-family: 'Afacad', sans-serif;
    font-size: 16px;
    border: 1px solid #445B8B;
    border-radius: 10px;
    outline: none;
    transition: all 0.2s;
}

.input-wrapper input:focus {
    border-width: 2px;
}

.input-wrapper input::placeholder {
    color: #000000;
    opacity: 0.4;
}

.input-wrapper .icon-inside {
    position: absolute;
    left: 16px;
    font-size: 18px;
    color: #445B8B;
    pointer-events: none;
}

.btn-submit {
    height: 48px;
    background-color: #445B8B;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: 'Afacad', sans-serif;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #33456b;
}

@media (max-width: 900px) {
    body {
        overflow: auto; 
        height: auto;
    }
    .hero-section {
        display: none;
    }
    .form-section {
        padding: 40px 20px;
        height: auto;
    }
}