/* Container Wrapping */
.ey-reset-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background-color: #f9fbf9;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Card layout */
.ey-reset-card {
    background: #ffffff;
    width: 100%;
    max-width: 460px;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.05), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid #e1ebe2;
    box-sizing: border-box;
}

/* Form Headings */
.ey-reset-header {
    text-align: center;
    margin-bottom: 25px;
}

    .ey-reset-header h2 {
        color: #2e7d32; /* Organic Theme Green */
        font-size: 24px;
        font-weight: 700;
        margin: 0 0 8px 0;
    }

    .ey-reset-header p {
        color: #666666;
        font-size: 14px;
        margin: 0;
        line-height: 1.4;
    }

/* Input Fields & Groups */
.ey-input-group {
    margin-bottom: 20px;
    text-align: left;
}

    .ey-input-group label {
        display: block;
        font-weight: 600;
        font-size: 13px;
        color: #333333;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .ey-input-group input {
        width: 100%;
        padding: 12px 14px;
        font-size: 15px;
        border: 1px solid #cccccc;
        border-radius: 8px;
        background-color: #fafafa;
        color: #333333;
        transition: all 0.25s ease;
        box-sizing: border-box;
    }

        .ey-input-group input:focus {
            outline: none;
            border-color: #2e7d32;
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
        }

.ey-input-help {
    display: block;
    font-size: 11px;
    color: #777777;
    margin-top: 4px;
}

/* Phone Layout Setup */
.ey-phone-input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #cccccc;
    border-radius: 8px;
    background-color: #fafafa;
    overflow: hidden;
    transition: all 0.25s ease;
}

    .ey-phone-input-wrapper:focus-within {
        border-color: #2e7d32;
        background-color: #ffffff;
        box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.15);
    }

.ey-phone-prefix {
    padding: 12px 14px;
    background-color: #eeeeee;
    color: #555555;
    font-weight: 600;
    font-size: 15px;
    border-right: 1px solid #cccccc;
    user-select: none;
}

.ey-phone-input-wrapper input {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
}

/* Buttons System */
.ey-btn {
    display: block;
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    box-sizing: border-box;
}

.ey-btn-primary {
    background-color: #2e7d32;
    color: #ffffff;
}

    .ey-btn-primary:hover {
        background-color: #235f26;
    }

.ey-btn-success {
    background-color: #1b5e20;
    color: #ffffff;
}

    .ey-btn-success:hover {
        background-color: #113b14;
    }

.ey-btn-link {
    background: transparent;
    color: #666666;
    font-size: 13px;
    padding: 8px;
    margin-top: 10px;
    text-decoration: underline;
}

    .ey-btn-link:hover {
        color: #d63031;
    }

.ey-btn:disabled {
    background-color: #cccccc !important;
    color: #888888 !important;
    cursor: not-allowed;
    box-shadow: none !important;
}

/* Visual Separation & Dynamic States */
.ey-divider {
    height: 1px;
    background: #e1ebe2;
    margin: 25px 0;
}

.ey-step-hidden {
    display: none;
}

/* Alert Notification Banner Layouts */
.ey-reset-alert {
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.4;
    text-align: left;
}

/* Dynamic Alert Modification via JavaScript Classes */
.ey-alert-error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

.ey-alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}
