.title {
font-size: 2.5em;
margin: 20px 0;
text-align: center;
}
.steps {
display: flex;
gap: 30px;
justify-content: center;
margin-bottom: 50px;
}
.step {
align-items: center;
display: flex;
font-size: 1.1em;
}
.circle {
align-items: center;
border-radius: 50%;
display: flex;
font-size: 0.9em;
font-weight: bold;
height: 20px;
justify-content: center;
margin-right: 8px;
width: 20px;
}
.active .circle {
background-color: rgb(227, 25, 54);
color: #fff;
}
.inactive .circle {
border: 1px solid #888;
color: #888;
}
.inactive {
color: #888;
}
.form-container {
background-color: #111;
border-radius: 10px;
max-width: 400px;
padding: 30px;
text-align: left;
width: 90%;
}
.current-plan {
color: #888;
font-size: 1em;
}
.plan-title {
font-size: 1.8em;
font-weight: bold;
margin: 10px 0;
}
.inclusions-title {
color: #888;
font-size: 1em;
margin-top: 20px;
}
.inclusions {
display: grid;
grid-template-columns: 1fr;
list-style: none;
padding: 0;
}
.inclusions li {
color: rgb(227, 25, 54);
margin-bottom: 10px;
padding-left: 25px;
position: relative;
}
.inclusions li::before {
color: rgb(227, 25, 54);
content: '✓';
left: 0;
position: absolute;
}
.inclusions li span {
color: #fff;
}
.options {
display: flex;
flex-direction: column;
}
.option {
border-radius: 10px;
box-sizing: border-box;
color: #fff;
margin-bottom: 10px;
margin-left: 10px;
margin-right: 10px;
padding: 10px;
width: calc(100% - 20px);
}
.option.no-contract {
border: none;
}
.option.loyalty {
border: none;
}
.option.selected {
background-color: #222;
}
.option.unselected {
background-color: rgb(227, 25, 54);
}
.option input {
display: none;
}
.option label {
align-items: center;
cursor: pointer;
display: flex;
}
.checkbox {
align-items: center;
background-color: #fff;
border-radius: 3px;
color: #000;
display: flex;
font-weight: bold;
height: 20px;
justify-content: center;
margin-right: 10px;
width: 20px;
}
.option input:checked + label .checkbox::before {
color: #000;
content: '✓';
}
.option-title {
font-size: 1em;
font-weight: bold;
}
.option-price {
font-size: 0.9em;
margin-top: 5px;
}
.extra-text {
color: #fff;
font-size: 1em;
font-weight: 900;
margin: 20px 0 15px;
margin-left: 10px;
padding-left: 10px;
}
.navigation {
align-items: center;
display: flex;
flex-direction: column;
gap: 10px;
justify-content: space-between;
margin-top: 30px;
}
.previous {
color: #888;
font-size: 1em;
text-decoration: none;
}
.error-message {
color: red;
display: none;
font-size: 0.9em;
margin-top: 10px;
}
footer {
margin-top: 50px;
}
/* Responsive Media Queries (detect screen size) */
@media (min-width: 600px) {
.form-container {
width: 400px;
}
.inclusions {
grid-template-columns: 1fr 1fr;
}
.navigation {
flex-direction: row;
gap: 0;
}
.title {
font-size: 2.5em;
}
.steps {
flex-wrap: nowrap;
}
}
@media (max-width: 599px) {
.option, button, a {
font-size: 1.1em;
padding: 12px 20px;
}
.steps {
flex-wrap: wrap;
gap: 15px;
}
}
