* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    border-bottom: 1px solid #eeeeee;
    flex-shrink: 0;
}

.logo {
    color: #004aad;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
}

.menu-icon span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #333;
    margin: 4px 0;
}

/* Main Layout */
.login-container {
    display: flex;
    flex: 1;
    height: calc(100vh - 55px);
}

/* Form Section */
.form-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.form-wrapper {
    width: 100%;
    max-width: 340px;
}

h2 {
    font-size: 22px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
}

/* Login Button */
.btn-login {
    width: 100%;
    background-color: #004aad;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-login:hover {
    background-color: #003a8c;
}

.divider {
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    line-height: 0.1em;
    margin: 50px 0 25px 0;
}

.divider span {
    background: #fff;
    padding: 0 10px;
    color: #9ca3af;
    font-size: 12px;
}

.signup-text {
    text-align: center;
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 20px;
}

.signup-text a {
    color: #004aad;
    text-decoration: none;
    font-weight: 700;
}

.btn-business {
    display: block;
    text-align: center;
    width: 100%;
    border: 1.5px solid #004aad;
    color: #004aad;
    padding: 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.image-section {
    flex: 1.3;
    height: 100%;
    background-color: #BEDDF4;
    display: flex;
    flex-direction: column;
}

.image-section img {
    width: 100%;
    height: 100%;
    flex: 1;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .image-section {
        display: none;
    }

    .form-wrapper {
        max-width: 90%;
    }
}


.input-group {
    margin-bottom: 20px;
}

.custom-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    padding: 12px 14px;
    background-color: #ffffff;
    margin-top: 8px;
}

.custom-input-wrapper input {
    border: none;
    outline: none;
    font-size: 15px;
    width: 100%;
}

.phone-input-wrapper {
    margin-bottom: 20px;
}

.btn-login {
    margin-top: 10px;
}

.forgot-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
    margin-bottom: 15px;
}

.forgot-text {
    font-size: 12px;
    color: #004aad;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.forgot-text:hover {
    text-decoration: underline;
    color: #003380;
}

body.swal2-shown {
    padding-right: 0 !important;
    height: 100% !important;
}

html.swal2-shown {
    height: 100% !important;
}