body {
    color: white;
    font-family: 'Gabarito', sans-serif;
    font-family: 'Kanit', sans-serif;
    text-shadow: 0px 0px 5px black;
    background-color: #01002f;

}

body::-webkit-scrollbar {
    background-color: transparent;
}

.preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #01002f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: opacity 0.5s;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

.content {
    display: none; /* Hide the content initially */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.container {
    height: 100vh;
    background-image: url(https://i.ibb.co/NSwMPtP/32-327306-32-9-wallpaper-4k.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-left: 40px;
    width: 100%;
    display: flex;
    align-items: center;

}

.greeting {
    width: 40%;
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 5px 5px 10px black;
    height: 450px;
    padding-left: 10px;
   
   
}

.heading {
    font-size: 75px;
    padding-left: 0px;

}

p{
    font-family: 'Gabarito', sans-serif;
    text-shadow: 0px 0px 5px black;
   
}

.NavBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 150px;

}

.material-symbols-outlined {
    padding-right: 20px;
    font-size: 50px;
}


.login{
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 50px;
    align-items: center;
}


.loginBtn {
    background-color:transparent;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-family: 'Gabarito', sans-serif;
    color: #53caf9;
    transition: 1s;
}

.loginBtn:hover {
    background-color: #53caf9;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-family: 'Gabarito', sans-serif;
    color: #01002f;
}

.loginMethods{
    width: 100%;
}

.signin{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}


a{
    color: white;
    transition: 1s;
}

a:hover{
    color: #53caf9;
}

a .loginBtn{
    background-color:transparent;
    border: none;
    border-radius: 10px;
    font-size: 20px;
    font-family: 'Gabarito', sans-serif;
    color: #53caf9;
    transition: 1s;
}