/* Success Page Styles */
.success-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 200px 20px 40px 20px; /* Increased top padding to account for fixed header */
}

.success-card {
    max-width: 600px;
    width: 100%;
    background-color: #050200;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

.success-icon {
    font-size: 80px;
    color: #94641e;
    margin-bottom: 30px;
}

.success-card h1 {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    margin-bottom: 20px;
}

.success-message {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.email-notice {
    color: #8c908c;
    font-size: 16px;
    margin-bottom: 20px;
}

.next-steps {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.success-actions {
    margin-top: 30px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    background: linear-gradient(
        0deg,
        rgba(255, 240, 218, 1) 1%,
        rgba(148, 100, 30, 1) 4%,
        rgba(255, 242, 219, 1) 83%,
        rgba(234, 200, 133, 1) 94%,
        rgba(251, 245, 209, 1) 98%,
        rgba(189, 154, 75, 1) 100%,
        rgba(236, 216, 163, 1) 100%
    );
    border: none;
    border-radius: 10px;
    color: #050201;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    opacity: 0.9;
}

/* Login link styling */
.login-link {
    color: #ffffff !important;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    transition: opacity 0.3s ease;
}

.login-link:hover {
    color: #ffffff !important;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    opacity: 0.8;
}
