@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body {
    display: flex;
    height: 100vh;
    padding: 20px;
    font-family: "Ubuntu", sans-serif;
}

.sidebar {
    width: 568px;
    background-image: url(../images/bg-sidebar-desktop.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    padding-top: 70px;
}

.buttons-container {
    display: flex;
    gap: 30px;
    padding-left: 40px;
    margin-bottom: 40px;
}

.buttons-container .button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    padding: 20px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--blue-50);
    color: white;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
}

.buttons-container .button:hover {
    background-color: var(--blue-200);
    color: var(--purple-600);
    border: none;
}

.buttons-container .button-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    font-size: 20px;
    text-transform: uppercase;
}

.button-content .step {
    color: var(--blue-300);
}

.button-content .btn-title {
    color: var(--white);
    font-weight: 700;
    font-size: 22px;
}

.container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 50px 100px;
}

.container h1 {
    font-size: 42px;
    margin: 20px 0;
    color: var(--blue-950);
}

.container h2 {
    font-size: 24px;
    font-weight: 500;
    color: var(--grey-500);
    margin-bottom: 40px;
}

.personal-info {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

.personal-info {display: none;}

.personal-info label {
    font-size: 22px;
    font-weight: 500;
    margin-top: 30px;
    color: var(--blue-950);
}

.personal-info .form-box {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    border: 1px solid rgba(184, 184, 186, 0.5);
    padding-left: 15px;
    margin-top: 10px;
    font-weight: 500;
    font-size: 30px;
    color: var(--blue-950);
}

.container .footer {
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.footer .btn-next, .btn-confirm {
    background-color: var(--blue-950);
    color: var(--white);
    padding: 13px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}

.footer .btn-next:hover, .btn-confirm:hover {
    background-color: var(--purple-600);
}

.footer .btn-next {
    margin-left: auto;
}

.btn-back {
    background-color: var(--white);
    color: var(--grey-500);
    padding: 13px 25px;
    border: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
}

.footer .btn-back:hover {
    color: var(--blue-950);
    background-color: var(--white);
}

.select-plan {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
}

.select-plan {display: none;}

.select-plan .plans-container {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    min-height: 250px;
    height: auto;
    margin-bottom: 30px;
}

.plans-container .plans {
    background-color: var(--white);
    width: 200px;
    height: auto;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(184, 184, 186, 0.5);
    transition: all 0.3s ease;
    overflow: hidden;
}

.plans-container .plans:hover {
    border: 2px solid var(--purple-600);
}

.plans-container .plans img {
    width: 65px;
    margin-bottom: 60px;
}

.plans-container .plans .plan-type {
    color: var(--blue-950);
    font-size: 24px;
    font-weight: 700;
    margin-top: auto;
}


.plans-container .plans .plan-value {
    color: var(--grey-500);
    font-size: 22px;
    font-weight: 700;
}

.plans-container .plans .free-bonus-msg {
    color: var(--blue-950);
    font-size: 18px;
    font-weight: 700;
}

.plans-container .plans .free-bonus-msg:empty {
    display: none;
}

.select-plan .toggle-container {
    background-color: var(--blue-50);
    width: 100%;
    height: 75px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.select-plan .toggle-container .label {
    color: var(--grey-500);
    font-weight: 700;
    font-size: 20px;
}

.select-plan .toggle-container .label.active {
    color: var(--blue-950);
}

.toggle-container .switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.toggle-container input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-container .switch .slider {
    position: absolute;
    inset: 0;
    background-color: var(--blue-950);
    border-radius: 30px;
    cursor: pointer;
}

.toggle-container .switch .slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 4px;
    top: 4px;
    background-color: var(--white);
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .slider::before {
    transform: translateX(24px);
}

.add-ons {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

.add-ons .options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.add-ons .options .option {
    width: 100%;
    height: 100px;
    border-radius: 10px;
    border: 2px solid rgb(214, 214, 217, 0.5);
    display: flex;
    align-items: center;
    /* justify-content: center; */
    gap: 30px;
    padding: 35px;
}

.add-ons .options .option:hover {
    border: 2px solid var(--purple-600);
}

.add-ons .options .option:has(input:checked) {
    background-color: var(--blue-100);
    border: 2px solid var(--purple-600);
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 27px;
    height: 27px;
    background-color: var(--white);
    border: 2px solid rgb(214, 214, 217, 0.5);
    border-radius: 5px;
    cursor: pointer;
    display: inline-grid;
    place-content: center;
    transition: background-color 0.2s, border-color 0.2s;
}

input[type="checkbox"]:checked {
  background-color: var(--purple-600);
  border-color: var(--purple-600);
}

input[type="checkbox"]::before {
  content: "✓";
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  transform: scale(0);
  transition: 0.1s transform ease-in-out;
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}

.options .option div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.options .option .add-ons-title {
    color: var(--blue-950);
    font-weight: 700;
    font-size: 22px;
}

.options .option .add-ons-subtitle {
    color: var(--grey-500);
    font-weight: 500;
    font-size: 20px;
}

.options .option .add-ons-value {
    color: var(--purple-600);
    font-size: 18px;
    font-weight: 500;
    margin-left: auto;
}

.finishing-up {
    display: none;
}

.thank-you {
    display: none;
}