body {
    background-color: #f4f7f6; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    padding-top: 50px;
    padding-bottom: 50px;
}

.verification-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
    padding: 40px;
    text-align: center;
    max-width: 500px;
    margin: auto;
}

.verification-image {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
}

.verification-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.verification-text {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 30px;
}
.back-to-app-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2ecc71;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.back-to-app-button:hover {
    background-color: #27ae60;
}