/* Auth CSS for Signup Page */

/* Base Layout */

.signup-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.signup-logo {
    max-width: 180px;
    margin-bottom: 2rem;
}

.signup-card {
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: white;
    position: relative;
    animation: fadeIn 0.6s ease-out forwards;
}

/* Header and footer styling */
.signup-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    text-align: center;
    animation: fadeIn 0.8s ease-out forwards;
}

.signup-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 0.5rem;
}

.signup-body {
    padding: 2rem;
    animation: fadeIn 1s ease-out forwards;
}

.signup-footer {
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem;
    text-align: center;
}

/* Multi-step form styles */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #dee2e6;
    z-index: -1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 0.875rem;
    color: #6c757d;
    text-align: center;
    transition: all 0.3s ease;
}

.step-item.complete .step-circle,
.step-item.active .step-circle {
    border-color: #0d6efd;
    background-color: #0d6efd;
    color: white;
}

.step-item.complete .step-title,
.step-item.active .step-title {
    color: #212529;
    font-weight: 500;
}

/* Button styling */
.step-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Account type options */
.account-type-option {
    padding: 1rem;
    border: 1px solid #dee2e6;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.account-type-option:hover {
    border-color: #adb5bd;
    background-color: rgba(0, 0, 0, 0.01);
}

.account-type-option.selected {
    border-color: #0d6efd;
    background-color: rgba(13, 110, 253, 0.05);
}


/* Info button */
.signup-container .info-button {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 100;
}

/* Terms agreement section */
.terms-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .signup-body {
        padding: 1.5rem;
    }

    .step-indicator {
        margin-bottom: 1.5rem;
    }

    .step-circle {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }

    .step-title {
        font-size: 0.75rem;
    }
}


/* Auth CSS for Login Page */
/* Info Button Styles */
.login-container .info-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.login-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    padding: 2rem 0;
}

.login-logo {
    max-width: 180px;
    margin-bottom: 2rem;
}

.login-card {
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Branding Panel Styles */
.branding-panel {
    position: relative;
    background-color: #f8f9fa;
    background-image: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.login-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.title-section {
    background-color: rgba(0, 0, 0, 0.04);
    /* Slightly darker */
    padding: 2rem;
    /* More padding */
    border-radius: 0.75rem;
    /* Match the card border-radius */
    margin-bottom: 2rem;
    /* More space below */
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    /* Subtle inner shadow */
}

.solution-features {
    margin-top: 1.5rem;
    flex-grow: 1;
}

.solution-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.solution-feature:hover {
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transform: translateY(-2px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.icon-helios {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.icon-electra {
    background-color: rgba(25, 135, 84, 0.1);
    color: #198754;
}

.icon-aqua {
    background-color: rgba(13, 202, 240, 0.1);
    color: #0dcaf0;
}

.icon-natgas {
    background-color: rgba(25, 135, 84, 0.1);
    color: #c64318;
}

.feature-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: #212529;
    font-weight: 600;
}

.feature-content p {
    color: #6c757d;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.feature-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.feature-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 1rem;
    color: #495057;
}

.branding-panel-footer {
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1.5rem;
}

.testimonial {
    font-size: 0.875rem;
    color: #6c757d;
    font-style: italic;
    position: relative;
    padding-left: 1.5rem;
}

.quote-icon {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.5;
}

.testimonial-author {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    font-style: normal;
    color: #495057;
    font-weight: 500;
}

/* Content Panel Styles */
.content-panel {
    padding: 2.5rem 2rem;
    background-color: white;
}

.login-form-title {
    text-align: center;
    margin-bottom: 2rem;
}


.login-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    color: #6c757d;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .branding-panel {
        display: none;
    }

    .content-panel {
        padding: 2rem 1.5rem;
    }
}

.login-card {
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.6s ease-out forwards;
}

.branding-panel {
    /* Keep your existing branding-panel styles and add: */
    animation: fadeIn 0.8s ease-out forwards;
}

.content-panel {
    /* Keep your existing content-panel styles and add: */
    animation: fadeIn 1s ease-out forwards;
}

.solution-feature {
    /* Keep your existing solution-feature styles and add: */
    animation: fadeIn 1s ease-out forwards;
    animation-delay: calc(0.2s * var(--animation-order, 1));
    opacity: 0;
    animation-fill-mode: forwards;
}