*{
    margin: 0;
    padding: 0;
    font-family: "Signika Negative", sans-serif;
}
body{
    background-color: rgba(44, 44, 133, 0.858);
    color: white;
}
.wrapper{
    width: 100vw;
    height: 100vh;
}
h1{
    text-align: center;
    text-transform: uppercase;
    align-items: center;
    padding: 10px 0;
    color: white;
}
.tab-container{
    display: flex;
    max-width: 550px;
    width: 90%;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 10px;
    font-size: 18px;
    font-weight: 200;
}
.tab{
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.461);
}
.tab.current-tab{
    background-color: black;
    color: white;
}
.tab:hover{
    background-color: rgba(0, 0, 0, 0.24);
    color: black
}
.weatherContainer{
    margin-block: 4rem;
}
.btn{
    all: unset;
    /* appearance: none;
    border: none;
    color: white; */
    font-size: 0.85rem;
    text-transform: uppercase;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.461);
    cursor: pointer;
    padding: 10px 30px;
}
.sub-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.grant-location-container{
    display: none;
}
.grant-location-container img{
    margin: 2rem;
}
.grant-location-container p:first-of-type{
    font-size: 1.75rem;
    font-weight: 600;
}
.grant-location-container p:last-of-type{
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.75rem;
    margin-bottom: 1.75rem;
    letter-spacing: 0.75px;
}
.grant-location-container.active{
    display: flex;
}

.loading-container{
    display: none;
}
.loading-container.active{
    display: flex;
}
.loading-container img{
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}
.loading-container p{
    text-transform: uppercase;
    margin-top: 0.75rem;
}

.user-info-container{
    display: none;
}
.user-info-container.active{
    display: flex;
}

.name{
    display: flex;
    flex-direction: row;
    gap: 0 0.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.user-info-container p{
    font-size: 1.5rem;
    font-weight: 200;
}
.user-info-container img{
    width: 90px;
    height: 90px;
}
.name p{
    font-size: 2rem;
}
.name img{
    width: 30px;
    height: 30px;
}
.parameter-container{
    display: flex;
    gap: 10px 20px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}
.parameter{
    width: 30%;
    max-width: 200px;
    background-color: rgba(219,226,239,0.5);
    border-radius: 5px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 5px 0;
    align-items: center;
}
.parameter img{
    width: 50px;
    height: 50px;
}
.parameter p:first-of-type{
    font-size: 1.15rem;
    font-weight: 600;
    text-transform: uppercase;
}

.form-container{
    display: none;
    width: 90%;
    max-width: 550px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    gap: 0 10px;
    margin-bottom: 3rem;
}
.form-container.active{
    display: flex;
}
.form-container input{
    all: unset;
    width: calc(100% - 80px);
    height: 40px;
    padding: 0 20px;
    background-color: rgba(219,226,239,0.5);
    border-radius: 10px;

}
.form-container input::placeholder{
    color: white;
}
.form-container input:focus{
    outline: 3px solid white;
}
.form-container .btn{
    padding: unset;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.error-found{
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.error-found.active{
    display: flex;
}
.error-found p{
    margin-top: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
}



