/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
.rg-body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1d2671, #c33764);
    background-image: url(../images/background/page-title-2.jpg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rg-body:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    background: -webkit-linear-gradient(-45deg, #132720 50%, #187c59 80%);
    opacity: 0.6;
}

/* Container */
.rg-container {
    width: 100%;
    padding: 20px;
}

/* Card */
.rg-card {
    max-width: 500px;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    color: #fff;
}

/* Logo */
.rg-logo {
    text-align: center;
    margin-bottom: 20px;
}

.rg-logo img {
    width: 120px;
}

/* Header */
.rg-header {
    text-align: center;
    margin-bottom: 20px;
}

.rg-header h2 {
    font-size: 28px;
    font-weight: 700;
}

.rg-header p {
    font-size: 14px;
    opacity: 0.8;
}

/* Grid */
.rg-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

/* Input */
.rg-input {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
    font-size: 14px;
}

.rg-input::placeholder {
    color: #ddd;
}

/* Error */
.rg-error {
    font-size: 13px;
    color: #ff6b6b;
}

/* Links */
.rg-links {
    margin: 15px 0;
    font-size: 14px;
}

.rg-links a {
    color: #ffd369;
    margin-left: 5px;
    text-decoration: none;
}

/* Button */
.rg-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.rg-btn:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .rg-grid-2 {
        grid-template-columns: 1fr;
    }

    .rg-card {
        padding: 20px;
    }

    .rg-header h2 {
        font-size: 22px;
    }
}

/* Password box */
.rg-password-box {
    position: relative;
}

.rg-eye {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    opacity: 0.7;
}

.rg-eye:hover {
    opacity: 1;
}

/* Body */
.lg-body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0f2027, #2c5364);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container */
.lg-container {
    width: 100%;
    padding: 20px;
}

/* Card */
.lg-card {
    max-width: 420px;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    color: #fff;
}

/* Logo */
.lg-logo {
    text-align: center;
    margin-bottom: 20px;
}

.lg-logo img {
    width: 110px;
}

/* Header */
.lg-header {
    text-align: center;
    margin-bottom: 20px;
}

.lg-header h2 {
    font-size: 26px;
    font-weight: 700;
}

.lg-header p {
    font-size: 14px;
    opacity: 0.8;
}

/* Links top */
.lg-top-links {
    text-align: center;
    margin-bottom: 15px;
}

.lg-top-links a {
    color: #ddd;
    text-decoration: none;
    margin: 0 5px;
}

/* Input */
.lg-input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Password box */
.lg-password-box {
    position: relative;
}

.lg-eye {
    position: absolute;
    right: 15px;
    top: 35%;
    cursor: pointer;
    color: #fff;
    opacity: 0.7;
}

.lg-eye:hover {
    opacity: 1;
}

/* Bottom links */
.lg-links {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 20px;
}

.lg-links a {
    color: #ffd369;
    text-decoration: none;
}

/* Button */
.lg-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.lg-btn:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 480px) {
    .lg-card {
        padding: 20px;
    }

    .lg-header h2 {
        font-size: 22px;
    }
}

/* Body */
.rs-body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container */
.rs-container {
    width: 100%;
    padding: 20px;
}

/* Card */
.rs-card {
    max-width: 450px;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    text-align: center;
    color: #fff;
}

/* Logo */
.rs-logo img {
    width: 100px;
    margin-bottom: 15px;
}

/* Success Icon */
.rs-success-icon {
    font-size: 50px;
    color: #00ffae;
    margin-bottom: 15px;
}

/* Header */
.rs-header h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.rs-header p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Table Style */
.rs-table {
    margin-bottom: 20px;
}

.rs-row {
    display: flex;
    justify-content: space-between;
    background: rgba(255,255,255,0.15);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.rs-row span {
    opacity: 0.8;
}

.rs-row strong {
    color: #fff;
}

/* Button */
.rs-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.rs-btn:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 480px) {
    .rs-card {
        padding: 20px;
    }

    .rs-header h2 {
        font-size: 20px;
    }

    .rs-row {
        flex-direction: column;
        text-align: left;
        gap: 5px;
    }
}

/* Body */
.rf-body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container */
.rf-container {
    width: 100%;
    padding: 20px;
}

/* Card */
.rf-card {
    max-width: 420px;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    text-align: center;
    color: #fff;
}

/* Logo */
.rf-logo img {
    width: 100px;
    margin-bottom: 15px;
}

/* Icon */
.rf-icon {
    font-size: 50px;
    color: #ff0000;
    margin-bottom: 15px;
}

/* Header */
.rf-header h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.rf-header p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Message */
.rf-message {
    background: rgba(255,255,255,0.15);
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Buttons */
.rf-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.rf-btn {
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

/* Retry Button */
.rf-retry {
    background: #fff;
    color: #ff416c;
}

/* Home Button */
.rf-home {
    background: linear-gradient(135deg, #ffd369, #ff9a9e);
    color: #000;
}

.rf-btn:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 480px) {
    .rf-card {
        padding: 20px;
    }

    .rf-header h2 {
        font-size: 20px;
    }

    .rf-actions {
        flex-direction: column;
    }
}

/* Body */
.fp-body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #654ea3, #eaafc8);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container */
.fp-container {
    width: 100%;
    padding: 20px;
}

/* Card */
.fp-card {
    max-width: 400px;
    margin: auto;
    padding: 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    text-align: center;
    color: #fff;
}

/* Logo */
.fp-logo img {
    width: 100px;
    margin-bottom: 15px;
}

/* Header */
.fp-header h2 {
    font-size: 24px;
    margin-bottom: 5px;
}

.fp-header p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* Alerts */
.fp-alert {
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 13px;
}

.fp-error {
    background: rgba(255,0,0,0.2);
    color: #ff4d4d;
}

.fp-success {
    background: rgba(0,255,150,0.2);
    color: #00ffae;
}

/* Input */
.fp-input-box {
    position: relative;
    margin-bottom: 20px;
}

.fp-input-box i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #ddd;
}

.fp-input-box input {
    width: 100%;
    padding: 12px 12px 12px 35px;
    border-radius: 10px;
    border: none;
    outline: none;
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.fp-input-box input::placeholder {
    color: #ddd;
}

/* Button */
.fp-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.fp-btn:hover {
    transform: scale(1.05);
}

/* Links */
.fp-links {
    margin-top: 15px;
}

.fp-links a {
    color: #ffd369;
    text-decoration: none;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 480px) {
    .fp-card {
        padding: 20px;
    }

    .fp-header h2 {
        font-size: 20px;
    }
}