.auth-box {
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background: #1a1e25;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
    color: #fff;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #ccc;
}

.form-control {
    width: 100%;
    padding: 10px;
    background: #2a2f38;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
}

.form-control:focus {
    border-color: #5865f2;
    outline: none;
}

.form-error {
    margin-top: 5px;
    font-size: 13px;
    color: #ff4d4d;
}

.form-check {
    margin-bottom: 15px;
}

.form-check-input {
    margin-right: 6px;
}

.form-check-label {
    font-size: 14px;
    color: #bbb;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.link-secondary {
    font-size: 14px;
    color: #8ab4f8;
    text-decoration: none;
    margin-top: 15px;
}

.link-secondary:hover {
    text-decoration: underline;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #5865f2;
    color: #fff;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #4752c4;
}

.alert-success {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
    background: #2d5235;
    color: #a7f3d0;
}

.auth-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}
