﻿.page-center {
    height: calc(100vh - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-page {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
    padding: 40px;
    max-width: 1100px;
    width: 100%;
}

.header-recup {
    text-align: center;
    margin-bottom: 35px;
}

    .header-recup h2 {
        font-weight: 600;
    }

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 24px;
    margin-bottom: 35px;
}

.card-choice {
    border: 1px solid #e4ebf2;
    border-radius: 12px;
    padding: 25px;
    min-height: 230px;
    cursor: pointer;
    transition: .2s;
    text-align: center;
}

    .card-choice,
    .card-choice:hover,
    .card-choice:focus,
    .card-choice:active {
        text-decoration: none !important;
    }

        .card-choice:hover {
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(0,0,0,.12);
        }

.card-icon {
    width: 60px;
    height: 60px;
    background: #fde8eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 10px;
}

    .card-icon i {
        color: #bc0c24;
    }


.card-choice h5 {
    margin-top: 10px;
    font-weight: 600;
    color: #000 !important;
    text-decoration: none !important;
}

.card-choice *,
.card-choice *:hover {
    text-decoration: none !important;
}

.card-choice p {
    font-size: 14px;
    color: #6c757d;
}

.card-choice span {
    display: inline-block;
    margin-top: 10px;
    color: #18a999;
    font-weight: 600;
}

.form-section {
    padding-top: 25px;
    border-top: 1px solid #eee;
}
