/* Background */
body {
    background: linear-gradient(135deg, #eef2f7, #f8fbff);
    font-family: 'Segoe UI', sans-serif;
}

/* Full center */
.full-center-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110vh;
    padding: 20px;
}

/* Card */
.center-card {
    max-width: 600px;
    width: 100%;
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

/* Title */
.center-card h3 {
    color: #2c3e50;
    font-weight: 600;
}

/* success & error */
.success-text { color: #28a745 !important; font-weight: 500; }
.error-text { color: #dc3545; font-weight: 500; }


/* Text */
.center-card p {
    color: #5f6b7a;
    font-size: 15px;
    line-height: 1.6;
}

/* Input */
.center-card input.form-control {
    margin-bottom: 18px;
    padding: 14px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #dce3ec;
    transition: 0.25s ease;
}

.center-card input.form-control:focus {
    border-color: #1a82e2;
    box-shadow: 0 0 0 2px rgba(26,130,226,0.15);
}

/* Button */
.center-card .btn-primary {
    background: linear-gradient(135deg, #1a82e2, #0066cc);
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    padding: 13px;
    transition: 0.3s ease;
}

.center-card .btn-primary:hover {
    background: linear-gradient(135deg, #0066cc, #004a99);
    transform: translateY(-1px);
}



/* links */
.center-card a {
    color: #1a82e2;
    text-decoration: none;
    font-weight: 500;
}
.center-card a:hover { text-decoration: underline; }

/* animation */
@keyframes fadeIn {
    from { opacity:0; transform: translateY(8px); }
    to { opacity:1; transform: translateY(0); }
}

/* mobile */
@media (max-width: 576px) {
    .full-center-wrapper { min-height: 80vh; }
    .center-card { padding: 30px 20px; }
}
.failed-view{
    margin-top:130px;
}