@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --web-gray: #A6A6A6;
    --web-gray-dark: #666666;
    --heading-gray: #414141;
    --link-hover: #06262d;
}

body {
    font-family: "Manrope", sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    background-color: #ffffff;
    height: 100vh;
}

a {
    text-decoration: none;
    color: #0066cc;
}

a:hover {
    color: var(--link-hover);
}

 /* Auth Layout css  */
.auth-container {
    display: flex;
    min-height: 100vh;
}

.auth-image-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.auth-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.auth-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 65, 98, 1) 0%, rgba(217, 217, 217, 0.1) 100%);
    display: flex;
    align-items: center;
    padding: 40px;
    justify-content: center;
}

.auth-branding {
    color: white;
    max-width: 500px;
}

.auth-logo {
    height: 50px;
    margin-bottom: 40px;
}

.auth-branding h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: white;
}

.auth-branding p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.auth-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 40px 30px;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 500px;
}

.auth-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-gray);
    margin-bottom: 10px;
}

.auth-subtitle {
    font-size: 17px;
    color: #949494;
    margin-bottom: 30px;
    font-weight: 600;
    line-height: 1.5;
}

.auth-subtitle a {
    color: #212121;
    font-weight: 600;
    font-size: 15px;
}

.form-label {
    font-size: 15px;
    font-weight: 600;
    color: #505050;
    margin-bottom: 8px;
}

.form-group {
    width: 100%;
}

.btn-send-otp {
    background-color: #01b8ff;
    color: white;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s ease;
    letter-spacing: 0.5px;
}

.btn-send-otp:hover,
.btn-send-otp:focus {
    background-color: #0099d8;
    color: white;
}

input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    box-shadow: none !important;
}

.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}

.form-control.parsley-error,
.form-select.parsley-error {
    border: 2px solid #ef4444 !important;
    outline: none !important;
    box-shadow: none !important;
}   

.form-control:invalid,
.form-select:invalid {
    border: 2px solid #ef4444 !important;
}

.parsley-errors-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 8px 0 0 0 !important;
    display: block !important;
    width: 100% !important;
}

.parsley-errors-list li {
    color: #ef4444 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    margin: 8px 0 0 0 !important;
    list-style: none !important;
    padding: 0 !important;
    display: block !important;
    clear: both;
}

.form-control {
    border: 1px solid #e0e0e0 !important;
}

.form-control:focus {
    border: 1px solid #e0e0e0 !important;
    box-shadow: none !important;
}

.parsley-required::after {
    content: '';
}

.otp-input {
    transition: border-color 0.3s ease;
}

.otp-input:focus {
    border: 2px solid #01b8ff !important;
}

input[type="checkbox"][data-parsley-required]:not(:checked) {
    outline: 2px solid transparent;
}

input[type="checkbox"].parsley-error {
    border: 2px solid #ef4444 !important;
}

@media (max-width: 767px) {
    .auth-image-section {
        display: none;
    }

    .auth-form-section {
        height: auto;
        min-height: 100vh;
        padding: 30px 20px;
    }

    .auth-title {
        font-size: 24px;
    }
}