﻿:root {
    --dark-green: #626F47;
    --light-green: #A4B465;
    --muted-green: #adb58f;
    --white: #ffffff;
    --cream: #fbfaf1;
    --pale-yellow: #FEFAE0;
    --gold: #FFCF50;
    --bs-btn-font-family: DroidKufi, sans-serif;
    --animate-duration: 1500ms;
}




body {
    /*background-image: url('../img/imageedit_16_2654961156.png');
    background-repeat: no-repeat;*/ /* prevent tiling */
    /*background-size:cover;*/ /* scale to fill screen */
    /*background-position:bottom;*/ /* keep it centered */

    background-color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    padding: 20px;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

    body::before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: radial-gradient(circle at 70% 20%, var(--light-green) 0%, transparent 60%), radial-gradient(circle at 20% 80%, var(--dark-green) 0%, transparent 40%);
        z-index: -1;
        opacity: 0.65;
    }



.login-container {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    margin: auto;
    max-width: 1300px;
    min-height: 600px;
}

.login-row {
    min-height: 600px;
}

.left-panel {
    /*background-image: url('../img/imageedit_15_3526727550.png');
    background-repeat: no-repeat;*/ /* prevent tiling */
    /*background-size: cover;*/ /*scale to fill screen */
    /*background-position: bottom;*/ /* keep it centered */
    background-color: var(--light-green);
   /* background-color: var(--muted-green);*/
    color: var(--white);
    padding: 40px;
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.responsive-image {
    width: 25%; /* default size on desktop */
    height: auto; /* keep aspect ratio */
}
.responsive-image-eagle {
    width: 10%; /* default size on desktop */
    height: auto; /* keep aspect ratio */
    border-left: 2px solid red; /* black vertical line */
    padding-left: 15px; /* space between line and image */
}




.right-panel {
    background-color: var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Improved wave patterns */
.wavy-pattern {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 40%;
    z-index: 1;
    opacity: 0.2;
}

.wavy-pattern-top {
    position: absolute;
    left: 0;
    top: 0;
    width: 40%;
    height: 40%;
    z-index: 1;
    opacity: 0.2;
}

/* Enhanced decorative elements */
.decorative-circles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.circle-1 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -100px;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 50px;
    right: 50px;
}

.circle-3 {
    width: 80px;
    height: 80px;
    top: 200px;
    left: 30px;
}

/* Enhanced plus signs */
.plus {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 30px;
    font-weight: 300;
}

.plus-1 {
    top: 80px;
    left: 70px;
}

.plus-2 {
    bottom: 100px;
    right: 60px;
}

/* Dots grid pattern */
.dots-grid {
    position: absolute;
    right: 30px;
    top: 100px;
    display: grid;
    grid-template-columns: repeat(3, 10px);
    grid-template-rows: repeat(7, 10px);
    gap: 8px;
    z-index: 1;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

/* Text styling */
h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.lead {
    opacity: 0.9;
    max-width: 80%;
    position: relative;
    z-index: 2;
}

h2 {
    color: #333;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Form styling to exactly match design */
.form-control {
    height: 55px;
    border-radius: 30px;
    border: 1px solid #e0e0e0;
    background-color: var(--cream);
    padding-left: 20px;
    font-size: 15px;
    margin-bottom: 20px;
    box-shadow: none !important;
}

    .form-control:focus {
        border-color: var(--light-green);
        background-color: var(--pale-yellow);
    }

    .form-control::placeholder {
        color: #999;
    }

.form-check-input {
    width: 18px;
    height: 18px;
    margin-top: 0.15em;
    background-color: var(--cream);
    border-color: #ccc;
}

    .form-check-input:checked {
        background-color: var(--dark-green);
        border-color: var(--dark-green);
    }

.form-check-label {
    color: #666;
    font-size: 15px;
}

/* Button styling to match design */
.btn-primary {
    background-color: var(--muted-green);
    border: none;
    border-radius: 30px;
    padding: 12px 0;
    font-weight: 500;
    width: 100%;
    height: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: var(--dark-green);
        transform: translateY(-1px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .btn-primary:active {
        background-color: var(--dark-green) !important;
    }

.welcome-text {
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .left-panel {
        min-height: auto;
        padding: 30px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .lead {
        max-width: 100%;
        font-size: 1.0rem;
    }

    .responsive-image {
        width: 13%; /* smaller on mobile */
    }
    .responsive-image-eagle {
        width: 10%; /* smaller on mobile */
    }



   
}

.spinner-border {
    width: 5rem;
    height: 5rem;
}

.form-control.is-invalid {
    padding-right: .75rem;
}

.form-select.is-valid:not([multiple]):not([size]),
.form-select.is-valid:not([multiple])[size="1"],
.was-validated .form-select:valid:not([multiple]):not([size]),
.was-validated .form-select:valid:not([multiple])[size="1"],
.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"],
.was-validated .form-select:invalid:not([multiple]):not([size]),
.was-validated .form-select:invalid:not([multiple])[size="1"],
.was-validated textarea.form-control:valid,
textarea.form-control.is-valid,
textarea.form-control.is-invalid {
    text-align: right;
    padding-right: .75rem;
}

.invalid-feedback {
    font-family: DroidKufi;
    display: block;
    transition: all 1.2s ease-in-out;
}

.form-control.is-valid, .was-validated .form-control:valid {
    padding-right: .75rem;
}

textarea {
    overflow: hidden; /* Hide scrollbars */
    resize: none; /* Prevent manual resizing */
}