* {
    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%;        
    overflow: hidden;
}

.hero-section {
    position: relative;
    flex: 0 0 45%;
    max-width: 648px;
    display: block;
}

.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: 40px;
}

.form-wrapper {
    width: 100%;
    max-width: 446px; 
}

.form-header h1 {
    font-size: 48px;
    font-weight: 600;
    color: #445B8B;
    margin-bottom: 16px;
}

.form-header p {
    font-size: 24px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 40px;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 24px;
    font-weight: 500;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    height: 50px;
    padding: 0 16px 0 48px; 
    font-family: 'Afacad', sans-serif;
    font-size: 18px;
    border: 1px solid #445B8B;
    border-radius: 10px;
}

.input-wrapper input:focus {
    border-width: 2px;
}

.input-wrapper input::placeholder {
    color: #000000;
    opacity: 0.5;
}

.icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    background-color: #445B8B; 
}

.form-actions {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    margin-top: 8px;
    margin-bottom: 8px;
}

.form-actions a {
    color: #445B8B;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

.form-actions a:hover {
    text-decoration: underline; 
}

.forgot-password {
    color: #445B8B;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-submit {
    height: 50px;
    background-color: #445B8B;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-family: 'Afacad', sans-serif;
    font-size: 22px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: #33456b;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper .icon-inside {
    position: absolute;
    left: 16px;
    font-size: 20px;   
    color: #445B8B;    
    pointer-events: none; 
}
.input-wrapper input {
    width: 100%;
    height: 50px;
    padding: 0 16px 0 48px; 
    font-family: 'Afacad', sans-serif;
    font-size: 18px;
    border: 1px solid #445B8B;
    border-radius: 10px;
    outline: none;
    transition: all 0.2s;
}

@media (max-width: 900px) {
    .hero-section {
        display: none; 
    }
    .form-header h1 {
        font-size: 36px;
    }
    .form-header p {
        font-size: 18px;
    }
}