html {
  font-size: 14px;
}

html, body {
    font-family:
            "Montserrat",
            -apple-system,
            Roboto,
            Helvetica,
            sans-serif;
    font-size: 14px;
    color: #666; /* Optional: makes all text use this color unless overridden */
    margin: 0;
    padding: 0;
    height: 100%;
}
.form-control {
    /*color: #717680;*/
    font-family: inherit;
    font-size: 14px;
}

.forget-password-title {
    font-weight: 600; 
    color: black; 
    font-size: 24px; 
    margin-top: 10px;
}

.check-email {
    height: 50px;
}
.field-label {
    align-self: flex-start;
    gap: 2px;
    color: #414651;
    font-weight: 500;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.text-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #717680;
    font-family: inherit;
    font-size: 14px;
    width: 100%;
}

.text-input::placeholder {
    color: #717680;
}


@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/*.login-page-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url('/solar-panels-roof-solar-cell.jpg') no-repeat center center fixed;
    background-size: cover;
}*/

.login-page-body {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow: hidden;
}

    /* Blurred background image */
    .login-page-body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('/solar-panels-roof-solar-cell.jpg') no-repeat center center fixed;
        background-size: cover;
        filter: blur(3px); /* Adjust blur as needed */
        z-index: 0;
        pointer-events: none;
    }

.login-container, #login-form, .login-box {
    position: relative;
    z-index: 1;
}

.login-container {
    flex: 1; /* Push footer to bottom */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Add some padding for smaller screens */
}

.login-box {
    background: white;
    padding: 25px; /* Slightly more padding for better spacing */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 35%;
    max-width: 550px; 
    
}


.login-logo {
    text-align: center;
}

.logo {
    max-width: 150px;
    margin-bottom: 25px;
}

.btn-primary {
    background-color: #E6A823;
    border-color: #E6A823;
}

    .btn-primary:hover {
        background-color: #D6941E;
    }


h2.heading {
    color: black !important; /* Will likely work now */
    font-size: 26px;
    margin-top: 10px;
}
.signup-page-body {
    background: url('/solar-panels-roof-solar-cell.jpg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.signup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.signup-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 600px;
    max-width: 90%;
    text-align: center;
}

.signup-logo {
    max-width: 150px;
    margin-bottom: 25px;
}

.signup-heading {
    margin: 10px 0 20px;
    font-size: 24px;
    font-weight: bold;
}

.signup-btn {
    background-color: #E6A823;
    border-color: #E6A823;
    color: white;
    padding: 10px 0;
    font-size: 16px;
}

    .signup-btn:hover {
        background-color: #D6941E;
    }

.text-black {
    color: black !important;
    text-decoration: none;
}

    .text-black:hover {
        text-decoration: underline;
    }

/* Optional - For better spacing between columns on smaller screens */
@media (max-width: 576px) {
    .col-md-6 {
        width: 100%;
    }
}

/* Pop In Animation */
@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}


/* Pulse Animation (optional if you want) */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.5);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.success-icon.pulse {
    animation: pulse 1.5s infinite;
}

/* Optional: Confetti (for fun) */
@keyframes confetti {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 1;
    }

    100% {
        transform: translateY(50px) rotate(720deg);
        opacity: 0;
    }
}


/* Pop In Animation */
@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

.thank-you-message {
    font-size: 1rem;
    color: #495057; /* Darker grey for visibility */
    text-align: center;
    margin-top: 10px;
    font-weight: 500;
}

.brand-highlight {
    color: #E6A823; /* Matches Yubi Solar's brand color */
    font-weight: bold;
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optional hover effect for the button */
.btn-primary {
    background-color: #E6A823;
    border-color: #E6A823;
}

    .btn-primary:hover {
        background-color: #D6941E;
    }


.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    font-size: 14px;
    color: #666;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 6px 0; /* Slightly reduced height */
    text-align: center;
}

    .footer a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
    }

        .footer a:hover {
            text-decoration: underline;
        }


.bottom-links {
    margin-top: 35px; /* Adjust as needed */
    font-size: 14px; /* Optional, adjust font size if needed */
}

.success-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: rgba(246, 198, 109, 0.2); /* Subtle brand yellow */
    margin: 15px 0;
}

    .success-icon i {
        font-size: 32px;
        color: #E6A823;
    }

.circle-check-icon {
    font-size: 50px;
    color: #E6A823;
}
i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
.reset-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

/* Password field wrapper for eye icon */
.password-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10; /* Ensures it stays above the error message */
}

.is-invalid + .toggle-password {
    top: 50%; /* Ensures the icon doesn't shift */
    transform: translateY(-50%);
}

.password-hints {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    margin-top: 5px;
}

    .password-hints li {
        display: flex;
        align-items: center;
        gap: 5px;
        margin: 3px 0;
    }

    .password-hints i {
        font-size: 12px;
        color: #E6A823;
    }

.is-invalid {
    border-color: #dc3545 !important;
    background-image: none !important;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 5px;
}
.bi::before {
    display: inline-block;
    vertical-align: middle; /* Keeps the icon centered */
}

.modal-dialog {
    max-width: 300px; /* Smaller width */
}

.modal-content {
    border-radius: 8px; /* Slightly rounded corners */
    padding: 15px; /* Adjust padding */
}

.modal-body {
    text-align: center;
}

    .modal-body svg {
        width: 25px; /* Reduce icon size */
        height: 25px;
    }

    .modal-body h4 {
        font-size: 16px; /* Smaller heading */
        margin-top: 10px;
    }

    .modal-body p {
        font-size: 12px; /* Smaller text */
    }

    .modal-body .btn {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    .password-icon {
        cursor: pointer; 
        right: 10px; 
        top: 50%; 
        transform: translateY(-50%); 
        font-size: 1.2rem;
    }







