* {
    box-sizing: border-box;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

body {
    padding: 0;
    margin: 0;
    background: #e9edfc;
    /* background: linear-gradient(#000, #fff); */
    overflow: scroll;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("./img/login_BG.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #000;
}

a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
}


.navbar ul li a:hover {
    color: #2400ef;
    transform: scale(1.1);
}

.back-link {
    position: relative;
}

.back-link i {
    font-size: 30px;
    font-weight: bold;
    color: #010e2a;
    position: absolute;
    position: fixed;
    background: #fff;
    top: 60px;
    left: 40px;
    padding: 5px;
    border: 1px solid #333;
    border-radius: 10px;
    transition: 0.3s ease;
    z-index: 1000;
}

@media(max-width: 600px){
    .back-link i{
        position: absolute;
        top: 30px;
        left: 30px;
    }
}

.back-link i:hover {
    border: 1px solid #025a72;
    color: #025a72;
    box-shadow: 0 0 10px #025a72;
}


#form-section {
    min-height: 100vh;
    /* background: linear-gradient(#00000038, #00000038), url('./img/bg21.jpeg'); */
    padding: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loginform {
    min-width: 300px;
    width: 25%;
    gap: 30px;
    padding: 20px;
    border: none;
    box-shadow: 0 0 5px #ffffff6a;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    border-radius: 20px;
    animation: fadeIn 0.8s ease-in-out;
}

h2 {
    margin: 10px 0;
    font-weight: 999;
    font-size: 30px;
    color: #024705;
    text-align: left;
}

#loginform input::placeholder{
    font-weight: bold;
    font-size: 18px;
}

p{
    text-align: center;
    margin: 5px 0;
}

.log-link:hover{
    text-decoration: underline;
}

.exceptions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
}


.oath{
    padding: 5px 10px;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.oath-link{
    padding: 8px 10px;
    border: 1px solid #333;
    border-radius: 8px;
    width: 50%;
    text-align: center;
    transition: .3s ease-in-out;
    margin: 10px 0 0 0;
}

.oath-link:hover{
    background: #0057b7;
    color: #fff;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


input, select {
    padding: 10px 20px;
    width: 100%;
    border-radius: 10px;
    border: 1px solid #838383;
    margin: 5px 0;
    font-weight: 700;
    min-width: 260px;
    outline: none;
}

input:focus {
    border: none;
    border-style: none;
    
}

label {
    width: 100px;
    font-size: 16px;
    height: auto;
    color: #333;

}

.form-item {
    margin: 15px 0;
    display: block;
}

button {
    padding: 10px 15px;
    border: 1px solid #0057b7;
    box-shadow: 0 0 2px #0057b7;
    color: #0057b7;
    font-weight: bold;
    background: transparent;
    border-radius: 10px;
    font-size: 18px;
    width: 100%;
    margin: 30px 0 20px 0;
    right: 20px;
    bottom: 20px;
    transition: .3s ease-in-out;
}

button:hover {
    background-color: #0057b7;
    box-shadow: 0 0 2px #0057b7;
    color: #fff;
    cursor: pointer;
}








/* ================================= SIGN UP PAGE ================
========================== */
#singupform{
    min-width: 300px;
    width: 50%;
    gap: 30px;
    padding: 90px 20px 20px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    border: none;
    box-shadow: 0 0 5px #0000006a;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: relative;
    border-radius: 20px;
    animation: fadeIn 0.8s ease-in-out;
    position: relative;
}

#singupform h2{
    position: absolute;
    top: 20px;
    left: 20%;
}

.singup-left{
    width: 50%;
    min-width: 290px;
}

.singup-right{
    width: 50%;
    min-width: 290px;
}


@media(max-width: 1400px)
{
    #singupform{
        width: 80%;
        display: flex;
        justify-content: space-evenly;
    }
}

@media(max-width: 800px)
{
    #singupform{
        width: 100%;
        display: flex;
        justify-content: space-evenly;
    }
}

