﻿.modern-form {
    max-width: 900px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.full-width {
    width: 100%;
}

.half-width {
    width: calc(50% - 15px);
}

.form-field label {
    font-weight: 600;
    margin-bottom: 5px;
}

.required {
    color: #ff585d;
}

.form-field input {
    border: none;
    /*border-bottom: 3px solid #1e2a44;*/
    padding: 12px;
    font-size: 16px;
    background-color: #f2f2f2;
}

    .form-field input:focus {
        outline: none;
        border-bottom: 3px solid #204ce5;
        background-color: #ffffff;
    }

.payment-info {
    padding: 12px 0;
    font-weight: 500;
}

.form-footer {
    text-align: center;
    margin-top: 40px;
}

.submit-btn {
    background-color: #FF0000;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
}

    .submit-btn:hover {
        opacity: 0.9;
    }

.confirm-page {
    font-family: Arial, sans-serif;
    background: #fff;
}

.confirm-wrapper {
    max-width: 700px;
    margin: 60px auto;
    padding: 20px;
}

.confirm-title {
    margin-left: 0px;
    color: #3377ad;
    font-weight: normal;
    font-size: 28px;
    font-family: Arial, Helvetica, sans-serif;
}

.confirm-subtext {
    margin-bottom: 30px;
    color: #555;
}

.confirm-card {
    background: #ffffff;
    border-radius: 8px;
    /*padding: 30px;*/
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.confirm-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

    .confirm-row:last-child {
        border-bottom: none;
    }

.label {
    font-weight: 600;
    color: #333;
}

.value {
    color: #111;
}

.confirm-actions {
    margin-top: 5px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background-color: #ff0000;
    color: #fff;
    padding: 14px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
}

    .btn-primary:hover {
        opacity: 0.9;
    }

.btn-secondary {
    background-color: #e0e0e0;
    border: none;
    padding: 14px 30px;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
}

    .btn-secondary:hover {
        background-color: #d5d5d5;
    }