* {
    font-family: 'Anek Malayalam', sans-serif;
    transition: all 450ms;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #fafafac4;
}


/******* SIGNIN PAGE *******/

.sectionSignIn {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto;
    max-width: 400px;
    width: 100%;
}

.signInContainer {
    width: 100%;
    background: rgb(66, 66, 131);
    margin-right: auto;
    margin-left: auto;
    box-sizing: border-box;
    padding: 20px 20px 40px 20px;
    margin-bottom: -20px;
    box-shadow: 0 12px 30px rgb(46 71 101 / 10%);
    border-radius: 10px;
    color: lightgrey;
    text-align: center;
    font-style: italic;
    font-size: 25px;
    font-weight: bold;
}

.signInContainer2 {
    width: 90%;
    margin: 0 auto 0 auto;
    padding: 20px;
    background-color: white;
    box-sizing: border-box;
    box-shadow: 0 12px 30px rgb(46 71 101 / 10%);
    border-radius: 10px;
}

.tilte {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
}

input:not([type="submit"]) {
    border: 0;
    outline: none;
    color: grey;
    background-color: #f5f6ff;
    cursor: pointer;
    padding: 10px;
    font-size: 15px;
    text-align: left;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgb(241, 241, 241);
    width: 100%;
    box-sizing: border-box;
}

input:hover {
    background-color: #ebedfd;
    box-shadow: none;
}

input:focus {
    background-color: #ebedfd;
    box-shadow: none;
}

.btn {
    border: 0;
    outline: none;
    color: white;
    background-color: #333;
    cursor: pointer;
    padding: 10px;
    font-size: 15px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 5px 5px 5px rgb(241, 241, 241);
    width: 100%;
    box-sizing: border-box;
}

.btn:hover {
    background-color: black;
    box-shadow: none;
}

.btn:focus {
    background-color: black;
    box-shadow: none;
}

.loadContainer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #f5f6ff;
}

.load {
    position: fixed;
    top: 50%;
    left: 50%;
    right: 50%;
    bottom: 50%;
    margin-top: -30px;
    margin-left: -30px;
    padding: 50px;
    border-radius: 100px;
    border: 5px solid white;
    border-top: 5px solid rgb(66, 66, 131);
    box-shadow: 0 12px 30px rgb(46 71 101 / 10%);
    animation: load 250ms linear infinite;
}

@keyframes load {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media all and (max-width: 768px) {
    .sectionSignIn {
        justify-content: start;
    }
    .signInContainer {
        padding: 100px 20px 120px 20px;
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
    }
    .signInContainer2 {
        width: 90%;
        margin: 0 auto 0 auto;
        padding: 20px;
        background-color: white;
        box-sizing: border-box;
        box-shadow: 0 12px 30px rgb(46 71 101 / 10%);
        border-radius: 10px;
    }
}