@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #a2d2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    padding: 30px;
    margin: 0;
}

.trial-plan-card {
    background-color: #fff;
    color: #1C1533;
    border-radius: 40px;
    padding: 50px;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

h1 {
    margin-top: 0;
}

.plan-card {
    background-color: #f8f9fa;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #c8c8ce;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.plan-card p {
    max-width: 315px;
}

.plan-name {
    font-weight: 700;
    font-size: 18px;
}

.plan-card input {
    height: 30px;
    aspect-ratio: 1;
    margin: 0;
    position: relative;
}

input[type='radio']:checked::before {
    width: 30px;
    aspect-ratio: 1;
    border-radius: 50%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: #1C1533;
    content: '';
}

input[type='radio']:checked::after {
    width: 15px;
    aspect-ratio: 1;
    border-radius: 50%;
    top: 7.5px;
    left: 7.5px;
    position: absolute;
    background-color: #fff;
    content: '';
}

input[type='radio']:focus,
input[type='radio']:active {
    outline: none;
}

.cbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-left: 12px;
}

.cbox a {
    color: #1C1533;
}

.cbox1 {
    margin-top: 25px;
    margin-bottom: 18px;
}

.cbox2 {
    margin-bottom: 30px;
}

input[type='checkbox'] {
    width: 25px;
    aspect-ratio: 1;
    accent-color: #1C1533;
}

input[type='checkbox']:focus,
input[type='checkbox']:active {
    outline: none;
}

.cbox label {
    margin-top: 5px;
    max-width: 350px;
}

.trial-btn {
    cursor: pointer;
    font-family: inherit;
    background-color: #1C1533;
    color: #fff;
    padding: 15px;
    border: none;
    font-size: 16px;
    font-weight: 500;
}

.nccn {
    text-align: center;
    margin: 15px 0;
    font-size: 14px;
    margin-bottom: 0;
}