.main-section{
    /* background-color: #253441; */
    width: 100%;
    margin: 0px !important;
    min-height: calc(100vh - 32px);
    background-image: url(../assets/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    
}
.form-title{
    color: white;
    font-family: "Montserrat", Sans-serif;
    font-size: 25px;
    font-weight: 600;
    text-shadow: 0px 0px 10px #2CB1A4;
}
.form-subtitle{
    color: white;
    font-weight: 700;
    padding: 0px 30px; 
}

.input-form{
    margin: 5px 0px;
    width: 80%;
    max-width: 100%;
    border: 1px solid #818a91;
    padding: 15px 35px;
    background-color: #ffffff;
    border-width: 0px 0px 0px 0px;
    border-radius: 40px 40px 40px 40px;
}

.btn-theme{
    font-weight: 700;
    font-size: 20px;
    margin: 20px 0px;
    width: 80%;
    padding: 15px 35px;
    background-color: #2CB1A4;
    color: white;
    border-width: 0px;
    border-radius: 40px !important;
}
.logo{
    height: 340px;
    padding: 0px;
    margin: 0px;
}

#loader-container {
    position: absolute;
    display: flex;
    width: 100%;
}
.fragment-loader {
    width: 30px;
    height: 10px;
    margin: auto;
}
.hidden {
    display: none;
}

.fragment-loader .left {
    transform: translate(0);
    animation-delay: 0;
}
.middle {
    transform: translate(10px);
    animation-delay: .2s;
}
.right {
    transform: translate(20px);
    animation-delay: .4s;
}

.fragment-loader .fragment-square {
    opacity: 0;
    transform: translateZ(0);
    animation: loader 1.6s infinite both;
    will-change: opacity;
    fill: #a9b5c0;
}



/* Smartphones (portrait and landscape) ----------- */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    /* Styles */
    .logo{
        height: 280px;
        padding: 0px;
        margin: 0px;
    }
    .btn-theme{
        width: 100%;
    }
    .input-form{
        width: 100%;
    }
    .form-subtitle{
        padding: 0px; 
    }
}