/* =========================================
   Global Variables & Colors
   ========================================= */
:root {
    --font-family: 'Manrope', sans-serif;
    
    /* Exact colors requested */
    --text-main: #2D3338;
    --text-muted: #596065;
    --btn-gradient: linear-gradient(97.13deg, #25686A 0%, #145B5E 100%);
    
    /* Extracted solid color for icons/text from gradient */
    --accent-teal: #1E6264; 
    
    /* Backgrounds */
    --bg-right: #FAFAFA;
    --bg-req-box: #F4F5F7;
    --border-color: #E6E8EA;
    
    /* Left Panel Icon Backgrounds */
    --color-mint: #C9EFE2;
    --color-powder: #DEEBF7;
    --color-lavender: #E0DAF5;
}

body {
    font-family: var(--font-family);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    background-color: var(--bg-right);
}

/* Typography Classes */
.text-main { color: var(--text-main) !important; }
.text-muted-custom { color: var(--text-muted) !important; }
.text-accent { color: var(--accent-teal) !important; }

.main-heading {
    font-size: 3.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
}

.tracking-tight { letter-spacing: -1.5px; }

/* =========================================
   Layout & Panels
   ========================================= */
.left-panel {
    /* Wavy gradient approximation */
    background: linear-gradient(135deg, #DFE8E7 0%, #D0DEDD 30%, #E9EFEF 70%, #D2DFDF 100%);
    position: relative;
    overflow: hidden;
    background-image: url("../../assets/images/create-new-password.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.left-panel::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 60%);
    pointer-events: none;
    z-index: 0;
}

.left-panel > * { position: relative; z-index: 1; }
.right-panel { background-color: var(--bg-right); }

/* Left Panel Icons */
.bg-mint { background-color: var(--color-mint) !important; }
.bg-powder { background-color: var(--color-powder) !important; }
.bg-lavender { background-color: var(--color-lavender) !important; }
.feature-icon { width: 48px; height: 48px; }

/* =========================================
   Form Elements
   ========================================= */
.shadow-sm-custom {
    box-shadow: 0 2px 4px rgba(0,0,0,0.02) !important;
}

.custom-input-group {
    border: 1px solid var(--border-color) !important;
    transition: all 0.2s ease;
}

.custom-input-group:focus-within {
    border-color: var(--accent-teal) !important;
    box-shadow: 0 0 0 3px rgba(37, 104, 106, 0.1) !important;
}

.custom-input-group input::placeholder {
    color: #A0AAB2;
    letter-spacing: 2px;
    font-size: 1rem;
    transform: translateY(-2px); /* Align dots vertically */
}

.cursor-pointer { cursor: pointer; }

/* Password Strength Indicator */
.strength-label {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.strength-bars { width: 140px; }

.strength-bar {
    height: 4px;
    flex: 1;
    background-color: #E2E6E9;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.strength-bar.active {
    background-color: var(--accent-teal);
}

/* Requirements Box */
.requirements-box {
    background-color: var(--bg-req-box);
}

.requirements-box i {
    margin-top: 2px; /* Slight alignment fix for icons */
}

/* Button */
.btn-gradient {
    background: var(--btn-gradient);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-gradient:hover, .btn-gradient:focus {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Links */
.hover-dark:hover {
    color: var(--text-main) !important;
}

.transition-all {
    transition: all 0.2s ease;
}

@media(max-width:768px){
    .main-heading {
        font-size: calc(1.475rem + 2.7vw);
    }
}



/* =========================================
   Success Modal Styles
   ========================================= */

/* Dark Blurred Backdrop */
.modal-backdrop.show {
    background-color: rgba(45, 51, 56, 0.75) !important; /* Using the #2D3338 color with transparency */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 1 !important;
}

/* Modal Card Formatting */
.modal-content.modal-card {
    border-radius: 24px !important;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15) !important;
}

/* Success Circle Icon */
.success-icon-bg {
    background-color: #BCEBE1; /* Light Mint/Cyan from the design */
    width: 88px;
    height: 88px;
}

.success-icon-bg i {
    font-size: 2.5rem !important;
    line-height: 1;
}

/* Footer tiny text */
.footer-text {
    font-size: 0.8rem;
}