﻿.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.success-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    margin: 20px 0;
}

.success-circle img {
    max-width: 100%;
}

.success-text {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin-top: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: 4px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 400px;
    justify-content: center;
    align-items: center;
}

.btn-light {
    background: white;
    color: #1a2849;
}

    .btn-light:hover {
        background: #f0f0f0;
    }

.btn-dark {
    background: linear-gradient(135deg, #1a2849 0%, #0f1d36 100%);
    color: white;
    margin-top: 0px;
}

    .btn-dark:hover {
        background: linear-gradient(135deg, #25448a 0%, #1a2849 100%);
    }

    .btn-dark strong {
        font-weight: 700;
    }
