
@font-face {
    font-family: 'Gotham Black';
    src: url("./fonts/GOTHAM-BLACK.woff");

  }body, h1, p, ul, li {
    margin: 0;
    padding: 0;
}
.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545; /* Bootstrap red color for danger */
}


body, html{
    width: 100%;
    min-height: 100%;
    overflow:hidden;
    min-height: 100vh;
}
body {
   /* background: linear-gradient(90deg,#FFFF00 6%,#FFA500 25%,#F14444 45%,#D53567 55%,#9A109A 94%); */
   background-color: #4158D0; 
   background: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
   background-repeat: no-repeat;
   background-size: cover;
   display: flex;
   align-items: center;
   justify-content: center;
   
}

/* 
Background - gradient for - onboarding pages (find more accurate gradient)

background-color: #4158D0;
background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);
*/



.main{
    background: #4158D0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25rem;
    width: 33rem;
    background: #E5F3FE;
    box-shadow:  5px 5px 10px #cee3f2, 
               -5px -5px 10px #faffff;
    border-radius: 3rem;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    z-index: 4;
}
.graphics{
    
    position: relative;
    z-index: 3;
   
}
.graphics3{
    margin-top: 3rem;
    width: 5rem;
    position: relative;
    z-index: 3;
}
.onboarding-page, .onboarding-page2, .onboarding-page3, .onboarding-page-login {
    height: 300px;
    width: 450px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    z-index: 10;
    position: absolute;
     
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
}
.welcome-heading-small{
    font-family: 'Gotham Black';
    font-size: 2rem;
}
.roboto-uppercase-heading{
    margin-top: 50px;
    font-family: 'Roboto';
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.3rem;
}
.welcome-text{
    font-family: 'Roboto';
    font-size: 1rem;
}


.btn {
    font-family: 'Gotham Black';
    display: inline-block;
    padding: 10px 20px;
    background-color: none;
    color: #000;
    text-decoration: none;
    border-radius: 20px;
    font-weight: bold;
    border: #000 solid 1px;
    text-transform: uppercase;

}

.btn:hover {
    background-color: #000;
    color: #fff;
}

.menu-member {
    width: fit-content;
    height: fit-content;
    list-style: none;
    margin-right: 40px;
}

.menu-member li {
    display: inline-block;
}

.menu-member li a {
    font-size: 16px;
    font-family: Roboto;
    text-decoration: none;
    padding: 10px 16px;
}


header a:hover {
    opacity: 80%;
}

.header-login-a:hover {
    background-color: #000;
    color: #fff;
    opacity: 100%;
}
/*--contact form --*/


.contact-form-text{
    width: 200px;
    margin-left: 150px;
  }



/* Responsive styles for screens smaller than 768px (e.g., mobile) */
@media (max-width: 768px) {
    .onboarding-page {
        padding: 10px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    ul {
        margin-bottom: 15px;
    }

    li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}