@import url('base.css');

header{
    position: sticky;
    padding: 0.5rem clamp(1rem, 15vw, 5rem);
}

body{
    background: url(/static/images/owes.webp);
    background-size: cover;
}

.page-content .secondary-text{
    color: var(--mainColor) !important;
}

.page-content{
    /* background: linear-gradient(135deg, rgba(23, 29, 85, 0.5), rgba(255, 255, 255, 0.5), rgba(88, 19, 31, 0.5) ); */
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    width: clamp(300px, 25vw, 500px);
    padding: 1rem 2rem;
    border: 1px solid var(--thirdColor);
    border-radius: var(--border2) 0 var(--border2) var(--border2);
    margin: 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.page-content a{
    white-space: nowrap;
}
.page-content h3{
    color: white;
}

button{
    width: min-content;
    border-radius: var(--border2);
    margin: 1rem 0;
  }

.logo2{
    height: 70px;
    margin-inline: auto;
}

.form{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.field{
    width: 100%;
    border-radius: var(--border2);
    background-color: white;
    display: flex;
    align-items: center;
    padding-left: 10px;
    -webkit-transition : border 100ms ease-out;
    -moz-transition : border 100ms ease-out;
    -o-transition : border 100ms ease-out;
    transition : border 100ms ease-out;
}

.field > input{
    width: 100%;
    border: none;
    padding-left: 0.5rem;
    line-height: 1rem;
    height: 2.4rem;
    border-radius: 0 var(--border2) var(--border2) 0;

}

::placeholder{
    color: gray;
    font-size: 12px;
    line-height: 1rem;
}

.field > input:focus{
    outline: none;
    background-color: white;
}

.links{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.h-bar2{
    border: 2px solid var(--mainColor);
    background-color: var(--mainColor);
    width: 100%;
    border-radius: var(--border3);
}


 /* ============ SMALL TABLETS / SMARTPHONES ============ */
 @media screen and (max-width: 578px){
    .page-content{
        width: clamp(220px, 80vw, 500px);
        padding: 1rem;
        gap: 0.7rem;
    }
  }