/* =========================================
   Thanks Page Specific Styles
   ========================================= */

.thanks-title {
    font-size: 28px;
    font-weight: bold;
    color: #0B6FB3;
    /* Theme Blue */
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.thanks-message p {
    margin-bottom: 20px;
    line-height: 2;
}

.thanks-message a {
    color: #0B6FB3;
    font-weight: 700;
}

.thanks-actions {
    margin-top: 40px;
}

.thankspage {
    border-top: 5px solid #0B6FB3;
    padding: 40px 20px;
    background-color: #F5F7FA;
}

.btn-back-home {
    display: inline-block;
    padding: 15px 60px;
    background-color: #0B6FB3;
    /* Theme Blue */
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 100px;
    font-weight: bold;
    font-size: 18px;
    transition: opacity 0.3s, transform 0.2s;
    box-shadow: 0 10px 22px rgba(11, 111, 179, 0.20);
	text-align:center;
}

.btn-back-home:hover {
    background: linear-gradient(90deg, #0F78C6 0%, #075A96 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(11, 111, 179, 0.26);
}

/* Utility for mobile breaks */
.sp-only {
    display: none;
}

@media (max-width: 768px) {
    .sp-only {
        display: block;
    }
	
	.thanks-actions{
		text-align: center;
	}
}