/* Main Box */
.recovery-box {
    width: 400px;
    text-align: left;
}

/* Reusing auth-box for other properties */

/* Steps */
.step {
    display: none;
}

.step.active {
    display: block;
}

.step-info {
    color: #aaa;
    margin: 10px 0;
}

.step-success {
    color: #4caf50;
    font-weight: bold;
    margin-bottom: 5px;
}

/* Inputs - using .auth-input */

/* Buttons */
.btn-recovery-primary {
    width: 100%;
    background: #007bff;
    margin-top: 10px;
}

.btn-recovery-back {
    width: 100%;
    background: #444;
    margin-top: 10px;
}

.btn-recovery-action {
    width: 100%;
    background: #28a745;
    margin-top: 10px;
}

/* Dynamic Buttons (JS) */
.btn-method {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: none;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.btn-method-ts3 {
    background: #007bff;
}

.btn-method-discord {
    background: #7289da;
}

.btn-method-email {
    background: #ea4335;
}


/* Messages */
.recovery-error {
    color: #ff4444;
    font-size: 0.9em;
    margin-bottom: 10px;
    display: none;
    text-align: center;
}

.recovery-success {
    color: #4caf50;
    font-size: 0.9em;
    margin-bottom: 10px;
    display: none;
    text-align: center;
}

/* Links */
.recovery-links {
    margin-top: 20px;
    text-align: center;
}

.recovery-links a {
    color: #aaa;
    text-decoration: none;
}

.recovery-links span {
    color: #fff;
}