*,
*::after,
*::before {
	box-sizing: border-box;
}

:root {
	--font-size: 18px;
	font-size: var(--font-size);
}

body, html, main {
	font-family: 'Archivo', -apple-system, BlinkMacSystemFont, Segoe UI, Helvetica, Arial, sans-serif;
	margin: 0;
	padding: 0;
	height: 100%;
	overflow-x: hidden;
	position: relative;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	scroll-behavior: smooth;
}

span, p, li, td, th, h1, h2, h3, h4, h5, h6, strong, b, i, u {
	filter: blur(0.125px);
}

h1, h2 {
	font-weight: 200;
	font-size: 3rem;
}

h1 { font-size: 4rem; }

h3 {
	font-weight: 500;
	text-transform: uppercase;
	font-size: 1.33rem;
}

bold, strong {
	font-weight: 400;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.2s linear;
}

input:not(.slider) {
	background-color: #f6f9fb;
    border-radius: 32px;
    border: 1px solid rgba(170, 180, 195, 0.3);
    padding: 0.7rem 8rem 0.7rem 1.2rem;
    outline: none;
    color: rgb(10 35 65);
    font-size: 0.8rem;
    font-family: 'Archivo';
    letter-spacing: -0.15px;
}

input:focus {
	outline: 2px solid #4D90FE;
}

button {
	background: black;
    color: #ffffff;
    white-space: nowrap;
    transition-property: background-color, opacity;
    border: 0;
    border-radius: 100rem;
    padding: 0.5rem 2rem;
    cursor: pointer;
    font-family: 'Archivo';
    letter-spacing: -0.15px;
    font-size: 0.8rem;
	font-weight: 500;
}

.noselect, img, svg, br {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
	pointer-events: none;
}

/* width */
::-webkit-scrollbar {
	width: 16px;
	padding-left: 25px;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: rgba(255,255,255,0.25);
	border-radius: 16px;
	border: 4px solid transparent;
	background-clip: content-box;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: rgba(255,255,255,0.3);
	background-clip: content-box;
}

::-webkit-scrollbar-track {
	background-color: black;
}

::-moz-selection, ::selection {
	color: white;
	background: #1338b0;
}

/* New classes for the HTML structure */
.header-container {
	position: fixed;
	height: 0;
	width: 100%;
	display: flex;
	justify-content: center;
	z-index: 1000;
}

.header-nav {
	height: fit-content;
	margin-top: 2rem;
	border-radius: 100rem;
	display: flex;
	align-items: center;
	gap: 1.75rem;
	padding: 1rem 2rem;
	border: 1px solid rgba(0, 0, 0, 0.25);
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(10px) saturate(2) brightness(1.5) contrast(1.5);
	background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px) saturate(10) brightness(1.5) contrast(1.5);
}

.header-nav a {
	opacity: 0.8;
}

.logo {
	height: 1.34rem;
}

.main-container {
	width: 100%;
	height: 100%;
	max-height: 1080px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 24px;
}

.zero-container {
	width: 0;
	height: 0;
	pointer-events: none;
}

.background-logos {
	width: 100vw;
	height: 100vh;
	max-height: 1080px;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	align-items: end;
}

.logos-wrapper {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 2rem 0;
	gap: 1rem;
}

.logo-row {
	display: flex;
	gap: 2rem;
	filter: brightness(0);
	opacity: 0.25;
}

.main-heading {
	font-size: 4rem;
	max-width: 650px;
}

.iphone-image {
	width: 100%;
    height: 100%;
	transform: translateY(15%);
}

.right-content {
	max-width: 400px;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.stars-container {
	display: flex;
	align-items: center;
	opacity: 0.8;
}

.rating-text {
	margin-left: 8px;
	font-weight: 500;
}

.description-text {
	font-size: 1.11rem;
	opacity: 0.8;
}

.input-container {
	display: flex;
	align-items: center;
	gap: 0;
}

.button-wrapper {
	height: 100%;
	width: 0;
}

.start-button {
	position: relative;
	transform: translateX(calc(-100% - 0.3rem));
}

.badges-container {
	display: flex;
	gap: 1rem;
}

/* Cost Calculator Section */
.container {
	width: 100%;
	height: auto;
	background: white;
	color: black;
	display: flex;
	justify-content: center;
	padding: 6rem 0;
	flex-wrap: wrap;
}

.container.black {
	background: black;
	color: white;
}

.main-section {
	width: 50%;
	max-width: 700px;
	padding: 24px;
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.main-header {
	margin-top: 4rem;
}

.main-header h3 {
	opacity: 0.5;
}

.main-form {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.input-group {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.input-label {
	font-size: 1.77rem;
	font-weight: 200;
}

.savings-text {
	font-size: 1.77rem;
	font-weight: 200;
}

.savings-amount {
	font-size: 3rem;
}

.body-section {
	width: 50%;
	max-width: 970px;
	height: auto;
	padding: 24px;
}

.body-wrapper {
	height: 100%;
	width: 100%;
	display: flex;
	gap: 24px;
	flex-direction: column;
	justify-content: end;
}

.body-cards {
	display: flex;
	gap: 24px;
}

.card-callnator {
	position: relative;
	background: rgba(255, 255, 255, 0.25);
	width: 100%;
	height: auto;
	min-height: 500px;
	display: flex;
	flex-direction: column;
	padding: 3rem;
	border-radius: 50px;
	overflow: hidden;
}

.card-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 20%;
	background: rgba(255, 255, 255, 0.25);
	z-index: 0;
}

.card-without {
	position: relative;
	background: rgba(255, 255, 255, 0.125);
	width: 100%;
	height: auto;
	min-height: 500px;
	display: flex;
	flex-direction: column;
	padding: 3rem;
	border-radius: 50px;
	overflow: hidden;
}

.card-overlay-without {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50%;
	background: rgba(255, 255, 255, 0.125);
	z-index: 0;
}

.card-content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	gap: 1rem;
}

.card-title {
	font-size: 2rem;
	font-weight: 200;
}

.card-price {
	font-size: 1.33rem;
	font-weight: 200;
	display: flex;
	align-items: baseline;
}

.price-amount {
	font-weight: 400;
	font-size: 3rem;
}

.price-asterisk {
	font-size: 1rem;
	vertical-align: super;
}

.card-description {
	font-size: 1.33rem;
	font-weight: 200;
	height: 100%;
	place-content: end;
	opacity: 0.5;
}

/* How It Works Section */
.process-step {
	display: flex;
	flex-direction: column;
	background: rgba(0,0,0,0.1);
	padding: 2rem;
	gap: 1rem;
	border-radius: 20px;
}

.step-title {
	font-weight: 400;
}

.step-description {
	font-weight: 200;
	line-height: 2rem;
	opacity: 0.8;
}

.phones-container {
	display: flex;
}

.phone-main {
	z-index: 3;
}

.phones-stack {
	display: flex;
	height: 100%;
	justify-content: center;
	align-items: center;
}

.phone-middle {
	position: absolute;
	z-index: 2;
}

.phone-back {
	position: absolute;
	transform: translateX(57%);
	z-index: 1;
}

/* Features Section */
.break-line {
	width: 100%; height: 0;
}

.grid-section {
	width: 100%;
	max-width: 1670px;
	padding: 24px;
}

.grid {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.feature-card {
	display: flex;
	flex-direction: column;
	background: white;
	color: black;
	padding: 3rem 2rem;
	border-radius: 20px;
	gap: 1rem;
	justify-content: space-between;
}

.feature-card-half {
	width: calc(100% / 2 - 1rem / 2);
}

.feature-card-third {
	width: calc(100% / 3 - 2rem / 3);
}

.feature-title {
	font-size: 1rem;
}

.feature-description {
	line-height: 2rem;
	font-weight: 200;
	opacity: 0.8;
}

/* Showcase Section */
.video-container {
	width: calc(100% / 3 - 2rem / 3);
	background: black;
	overflow: hidden;
}

/* Pricing Section */
.pricing-wrapper {
	padding-top: 5rem;
	display: flex;
	flex-direction: column;
}

.billing-toggle {
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 1.5rem;
}

.toggle-switch {
	display: inline-flex;
	width: 5.25rem;
	flex-shrink: 0;
	cursor: pointer;
	border-radius: 9999px;
	border: 2px solid transparent;
	background: white;
	color: black;
	padding: 0.25rem;
	position: relative;
	transition: all 0.2s ease;
}

.toggle-indicator {
	display: block;
	width: 1.75rem;
	height: 1.75rem;
	background: black;
	border-radius: 50%;
	transition: transform 0.2s ease;
}

.yearly-option {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.savings-badge {
	display: flex;
	align-items: center;
	font-size: 0.75rem;
	padding: 0.5rem 1rem;
	height: auto;
	border-radius: 9999px;
	font-weight: 500;
	white-space: nowrap;
	border: 1px solid transparent;
	background-color: #dcfce7;
	color: #052e16;
}

.pricing-cards {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.pricing-card {
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.15);
	padding: 3rem 2.5rem;
	gap: 2rem;
	font-weight: 200;
	border-radius: 20px;
	/* min-width: 280px; */
	/* flex: 1; */
	/* max-width: 350px; */
	/* border: 2px solid transparent; */
	transition: all 0.3s ease;
	width: calc(100% / 3 - 4rem / 3);
	background: linear-gradient(25deg, transparent, rgba(255, 255, 255, 0.15));
}

.card-header {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.plan-name {
	font-size: 2rem;
	font-weight: 400;
}

.overage-rate {
	font-weight: 300;
	opacity: 0.5;
}

.card-pricing {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 1rem 0;
}

.original-price {
	text-decoration: line-through;
	font-size: 1.33rem;
	font-weight: 100;
	opacity: 0.25;
}

.discounted-price {
	font-size: 1.33rem;
}

.price-big {
	font-size: 3rem;
	font-weight: 600;
	background: linear-gradient(180deg, white, rgba(255, 255, 255, 0.5));
    background-clip: text;
    color: transparent;
}

.pricing-button {
	background: linear-gradient(0deg, #777777, #ffffff);
	color: black;
	padding: 1rem 2rem;
	border-radius: 10px;
	font-weight: 500;
	margin-top: auto;
	transition: all 0.2s ease;
}

.pricing-table {
	width: 100%;
	display: flex;
	flex-direction: column;
	margin-top: 3rem;
}

.table-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	width: 100%;
	font-size: 1.2rem;
	font-weight: 200;
	border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.table-header {
	border-top: 1px solid rgba(255, 255, 255, 0.25);
	font-weight: 400;
}

.table-cell {
	padding: 1.5rem 1rem;
	display: flex;
	align-items: center;
}

.table-feature {
	justify-content: flex-start;
}

.table-plan {
	justify-content: center;
	font-weight: 300;
	opacity: 0.8;
}

/* FAQ Section */
.faq-wrapper {
	padding: 24px;
	padding-top: 9rem;
}

.faq-accordion {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-item:last-child {
	border-bottom: none;
}

.faq-question {
	width: 100%;
	padding: 1.5rem 0;
	background: none;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 1.77rem;
	font-family: inherit;
	color: inherit;
	text-align: left;
	transition: all 0.2s ease;
}

.faq-question:hover {
	opacity: 0.7;
}

.faq-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.5rem;
	height: 1.5rem;
	font-size: 1.2rem;
	font-weight: 300;
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	flex-shrink: 0;
}

.faq-text {
	font-weight: 400;
	line-height: 1.4;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-content {
	padding-bottom: 1.5rem;
	padding-left: 3rem;
}

.faq-content p {
	line-height: 1.75rem;
	margin: 0;
	font-weight: 300;
	opacity: 0.8;
}

/* Enhanced hover and focus states */
.faq-item:hover {
	background-color: rgba(0, 0, 0, 0.02);
}

/* Smooth transitions for expanded state */
.faq-item[data-expanded="true"] .faq-icon {
	transform: rotate(45deg);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
	.faq-item,
	.faq-question,
	.faq-icon,
	.faq-answer {
		transition: none;
	}
}

/* Mobile responsiveness */
@media (max-width: 768px) {
	.faq-question {
		font-size: 1.4rem;
		padding: 1.2rem 0;
		gap: 1rem;
	}
	
	.faq-content {
		padding-left: 2.5rem;
		padding-bottom: 1.2rem;
	}
	
	.faq-content p {
		font-size: 0.95rem;
		line-height: 1.6rem;
	}
}

/* Contact Section */
.contact-section {
	padding-top: 4rem;
}

.contact-grid {
	gap: 6rem;
}

.contact-row {
	width: 100%;
	display: flex;
	align-items: center;
}

.contact-info {
	width: 100%;
	max-width: 700px;
	font-size: 1.33rem;
	font-weight: 200;
}

.contact-text {
	line-height: 2.5rem;
}

.contact-email {
	font-size: 1.77rem;
}

.footer-links {
	width: 100%;
	max-width: 970px;
	display: flex;
	justify-content: space-between;
	font-size: 1.77rem;
	gap: 2rem;
}

.footer-logo {
	width: 100%;
	filter: invert(1);
}

.footer-row {
	width: 100%;
	display: flex;
	align-items: center;
	font-size: 0.88rem;
	font-weight: 200;
	opacity: 0.5;
}

.copyright {
	width: 100%;
	max-width: 700px;
}

.social-links {
	width: 100%;
	max-width: 970px;
	display: flex;
	justify-content: end;
	gap: 2rem;
}

/* Terms of Service Page Styles */
.terms-hero {
	padding-top: 15vh;
	position: relative;
	margin-bottom: 15vh;
	min-height: 100vh;
}

.terms-wrapper {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 24px;
}

.terms-main-section {
	margin-bottom: 4rem;
}

.terms-content {
	display: flex;
	gap: 4rem;
	align-items: flex-start;
}

.terms-intro {
	flex: 3;
	padding-right: 3rem;
}

.terms-intro h1 {
	font-size: 3rem;
	font-weight: 200;
	margin-bottom: 1.5rem;
	line-height: 1.1;
}

.effective-date {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 2rem;
	opacity: 0.8;
}

.calendar-icon {
	fill: rgba(47, 42, 67, 0.8);
	flex-shrink: 0;
}

.intro-text p {
	font-size: 1.1rem;
	line-height: 1.6;
	margin-bottom: 1.5rem;
	font-weight: 300;
	color: rgba(0, 0, 0, 0.8);
}

.terms-toc {
	flex: 1;
	position: sticky;
	top: 2rem;
	border-radius: 16px;
	padding: 2rem;
}

.terms-toc h2 {
	font-size: 1.2rem;
	font-weight: 500;
	margin-bottom: 1rem;
	color: rgba(0, 0, 0, 0.8);
}

.toc-list {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.toc-link {
	display: block;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.7);
	text-decoration: none;
	transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border-left: 3px solid transparent;
}

.toc-link:hover {
	background-color: rgba(0, 0, 0, 0.04);
	color: rgba(0, 0, 0, 0.9);
	transform: translateX(2px);
}

.toc-link.active {
	color: black;
	border-left-color: black;
	font-weight: 500;
}

.divider {
	height: 1px;
	width: 100%;
	background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
	margin: 4rem 0;
}

.terms-section {
	display: flex;
	gap: 4rem;
	margin-bottom: 3rem;
	padding: 2rem 0;
	scroll-margin-top: 2rem;
	transition: all 0.3s ease;
}

.terms-section:hover {
	background-color: rgba(0, 0, 0, 0.01);
	border-radius: 16px;
	margin-left: -2rem;
	margin-right: -2rem;
	padding-left: 2rem;
	padding-right: 2rem;
}

.terms-sidebar {
	flex: 1;
	top: 8rem;
	height: fit-content;
}

.terms-sidebar h2 {
	font-size: 1.4rem;
	font-weight: 500;
	color: black;
	line-height: 1.3;
	margin: 0;
}

.terms-body {
	flex: 3;
}

.terms-body p {
	font-size: 1rem;
	line-height: 1.7;
	margin-bottom: 1.5rem;
	color: rgba(0, 0, 0, 0.8);
	font-weight: 300;
}

.terms-body p:last-child {
	margin-bottom: 0;
}

.terms-body strong {
	font-weight: 600;
	color: rgba(0, 0, 0, 0.9);
}

.prohibited-list {
	padding-left: 0;
	list-style: none;
}

.prohibited-list li {
	padding: 0.75rem 0;
	padding-left: 1.5rem;
	position: relative;
	font-size: 1rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 0.8);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.prohibited-list li:last-child {
	border-bottom: none;
}

.prohibited-list li:before {
	content: '•';
	position: absolute;
	left: 0;
	color: black;
	font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.terms-content {
		flex-direction: column;
		gap: 2rem;
	}
	
	.terms-intro {
		padding-right: 0;
	}
	
	.terms-toc {
		position: static;
		order: -1;
	}
	
	.terms-section {
		flex-direction: column;
		gap: 1.5rem;
	}
	
	.terms-sidebar {
		position: static;
	}
}

@media (max-width: 768px) {
	.terms-hero {
		padding-top: 10vh;
		margin-bottom: 10vh;
	}
	
	.terms-intro h1 {
		font-size: 2.2rem;
	}
	
	.terms-wrapper {
		padding: 0 16px;
	}
	
	.terms-toc {
		padding: 1.5rem;
	}
	
	.terms-section {
		margin-bottom: 2rem;
		padding: 1rem 0;
	}
	
	.terms-section:hover {
		margin-left: -1rem;
		margin-right: -1rem;
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

/* Smooth scroll behavior */
html {
	scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.toc-link:focus {
	outline: 2px solid #4D90FE;
	outline-offset: 2px;
}

/* Print styles */
@media print {
	.terms-toc {
		display: none;
	}
	
	.terms-section {
		break-inside: avoid;
		page-break-inside: avoid;
	}
}

/* Outermost wrapper for the dialer interface */
.phone-dialer-wrapper {
    height: 100%;
    flex-shrink: 0;
}

/* Positions the child elements relative to the wrapper */
.phone-dialer-positioner {
    width: 100%;
    height: 100%;
    position: relative;
}

/* A container to center the phone screen content */
.phone-dialer-screen-container {
    width: 100%;
    height: 100%;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* The main visual body of the phone dialer */
.phone-dialer-body {
    height: 620px;
    width: 285px;
    transform: translateX(-33%) translateY(-1.5%);
    border-radius: 35px;
}

/* Flex container for the content inside the phone body */
.phone-dialer-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    padding: 2rem;
}

/* Styling for the country code text */
.phone-dialer-country-code {
    font-size: 1.5rem;
}

/* Flex container for the grid of keypad buttons */
.phone-dialer-keypad {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

/* Styling for the individual dialer buttons */
.phone-dialer-key {
    font-size: 1.5rem;
    font-weight: 400;
    color: black;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: saturate(1.5);
    padding: 0.5rem 1rem;
    border-radius: 100%;
    height: 58px;
    width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-wrapper {
	position: relative;
	padding: 1rem 0;
	width: 100%;
}

input[type=range] {
	-webkit-appearance: none;
	width: 100%;
	height: 12px;
	background: linear-gradient(to right, #999 var(--progress, 0%), #333 var(--progress, 0%));
	border-radius: 6px;
	outline: none;
}

input[type=range]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 48px;
	height: 32px;
	background: transparent;
	cursor: pointer;
	position: relative;
	z-index: 3;
}

.thumb-bubble {
	position: absolute;
	top: 50%;
	transform: translate(-45%, -55%);
	width: 48px;
	height: 32px;
	border-radius: 16px;
	background: white;
	color: black;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: sans-serif;
	font-size: 14px;
	pointer-events: none;
	z-index: 2;
}

.modal-backdrop {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  position: fixed;
  z-index: 10000;
  backdrop-filter: blur(100px) saturate(200%);
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-box {
  background: white;
  display: flex;
  flex-direction: column;
  width: auto;
  padding: 2rem;
  border-radius: 20px;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}

.modal-logo {
  height: 2rem;
}

.modal-title {
  font-weight: 500;
}

.modal-subtitle {
  opacity: 0.75;
  font-size: 0.85rem;
}

.code-inputs {
  display: flex;
  width: 100%;
  justify-content: space-around;
  gap: 0.5rem;
}

input.code-input {
  background: transparent;
  margin: 0;
  color: black;
  padding: 1rem;
  text-align: center;
  border-radius: 7px;
  display: flex;
  width: 4.334rem;
  font-size: 2rem;
}

.modal-actions {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.cancel-button {
  width: 100%;
  padding: 1.25rem;
  border-radius: 7px;
  background: transparent;
  color: black;
  border: 1px solid rgba(170, 180, 195, 0.5);
}

.verify-button {
  width: 100%;
  padding: 1.25rem;
  border-radius: 7px;
  background: linear-gradient(180deg, #444444, #000000);
}

.resend-text {
  font-weight: 300;
  opacity: 0.75;
  font-size: 0.85rem;
}

.resend-link {
  text-decoration-line: underline;
}