@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Uncial+Antiqua&family=Varela&display=swap');

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

* {
    padding: 0;
    margin: 0;
}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    border: 4px solid #40E0D0;
    border-top: 4px solid #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.border-teal-blue{
    border: 2px solid #40ABBE;
    border-radius: 10px;
}

.input-labels{
    font-family: "Poppins", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 1.2rem;
    color: #40ABBE;
}

.uncial-antiqua-regular {
    font-family: "Uncial Antiqua", serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background-color: rgb(254, 252, 244);
}

.alt-logo {
    text-align: center;
    margin-top: 5px;
}

.title {
    font-family: "Uncial Antiqua", serif;
    font-weight: 900;
    font-style: normal;
    color: #002C34;
    line-height: 4rem;
    text-align: center;
    font-size: 3rem;
}

.text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.bg-teal-blue{
    background-color: #52cfe4;
}


.details {
    font-family: "Poppins", serif;
    color: #40ABBE;
    max-width: 11vw;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 0px;
    margin-bottom: 0px;
}

.alert {
    color: red;
    font-size: 14px;
    font-family: "Poppins", serif;
    font-style: normal;
    padding-bottom: 0px;
    padding: 0;
    margin-bottom: 0;
    text-align: center;
}

.hero-subheading {
    color: #40ABBE;
    font-weight: 700;
    font-family: "Poppins", serif;
    font-style: normal;
}

.typing {
    margin-top: 0px;
    font-size: 0.8rem;
    font-weight: 600;
    color: black;
}

@media (max-width: 1000px) {
    .details {
        max-width: fit-content;
    }
}

@media (min-width: 650px) {
    .container {
        max-width: 34vw;
        margin: auto;
    }
}