@charset "UTF-8";

/* ==========================================================================
   Redirect Page Styles
   ========================================================================== */

body {
    background: linear-gradient(135deg, #FFFDE7 0%, #FFE0B2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.redirect-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.redirect-content {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.loading-animation {
    font-size: 4rem;
    color: #06C755;
    margin-bottom: 25px;
}

.loading-animation i {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.redirect-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 15px;
}

.redirect-message {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #06C755, #04A043);
    border-radius: 10px;
    transition: width 2s linear;
}

.redirect-note {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.manual-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #06C755;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 0 #04A043;
}

.manual-link:hover {
    background: #05B34A;
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #04A043;
}

.manual-link:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #04A043;
}

.manual-link i {
    font-size: 1.2rem;
}

