html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.content-card {
    min-width: 1200px;
    padding: 60px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    background: rgba(254.92, 254.92, 254.92, 0.22);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    overflow: hidden;
    border-radius: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 56px;
    display: flex;
}

.header {
    align-self: stretch;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    display: flex;
}

.title {
    color: #F8F8F8;
    font-size: 96px;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    word-wrap: break-word;
    text-shadow: 15px 35px 49px rgba(0, 0, 0, 0.25);
}

.subtitle {
    text-align: center;
    color: #F8F8F8;
    font-size: 40px;
    font-family: 'Baloo 2', cursive;
    font-weight: 400;
    word-wrap: break-word;
}

.button {
    width: 329px;
    height: 92px;
    padding-left: 63px;
    padding-right: 63px;
    padding-top: 27px;
    padding-bottom: 27px;
    background: #2D4B6F;
    border-radius: 15px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    display: inline-flex;
    cursor: pointer;
    border: none;
    transition: background 0.3s ease;
}

button:hover {
    background: #3a5f8a;
}

button:active {
    background: #1f3552;
}

.button-text {
    color: #F8F8F8;
    font-size: 36px;
    font-family: 'Baloo 2', cursive;
    font-weight: 700;
    word-wrap: break-word;
}

.terms {
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    display: inline-flex;
}

.checkbox-wrapper {
    width: 32px;
    height: 32px;
    position: relative;
}

.checkbox-input {
    width: 22px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 0;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid #E0E0E0;
    appearance: none;
    background: white;
    transition: all 0.3s ease;
}

.checkbox-input:hover {
    border-color: #2D4B6F;
}

.checkbox-input:checked {
    background: #2D4B6F;
    border-color: #2D4B6F;
}

.checkbox-input:checked::after {
    content: '✓';
    color: white;
    font-size: 16px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.terms-text {
    text-align: justify;
    color: white;
    font-size: 20px;
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    line-height: 30px;
    word-wrap: break-word;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.terms-text:hover {
    color: #a8d4e8;
}

.terms-wrapper {
    display: flex;
    gap: 5px;
    align-items: center;
}

.terms-agree {
    color: white;
    font-size: 20px;
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    line-height: 30px;
    cursor: pointer;
}

.terms-link {
    color: white;
    font-size: 20px;
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    line-height: 30px;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #a8d4e8;
}