﻿/* Center the form container */
.centered-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Adjust the checkbox size and appearance */
input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
}

    /* Style the checked state */
    input[type="checkbox"]:checked::before {
        content: '\2713';
        display: block;
        width: 100%;
        height: 100%;
        font-size: 16px;
        line-height: 20px;
        text-align: center;
        color: white;
        position: absolute;
        top: 0;
        left: 0;
    }

/* Container for buttons and terms and conditions */
.button-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Style for terms and conditions */
.terms-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: white;
    font-size: 16px;
}

    /* Spacing for checkbox */
    .terms-container input[type="checkbox"] {
        margin-right: 10px;
    }

    /* Style the links */
    .terms-container a {
        color: #007bff;
        font-weight: bold;
        text-decoration: none;
    }

        .terms-container a:hover {
            text-decoration: underline;
        }

/* Style the buttons */
.button-container .mc-btn {
    font-size: 14px;
    padding: 10px 20px;
    margin: 5px;
}

/* Flex container for buttons */
.button-group {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
}

    /* Align buttons side by side */
    .button-group .mc-btn {
        flex: 1;
        margin: 5px;
    }
