/* Option 2: Import via CSS */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css");
* {
    transition: background-color 300ms ease, color 300ms ease;
}
*:focus {
    /* background-color: rgba(221, 72, 20, .2); */
    outline: none;
}
html, body {
    color: rgba(33, 37, 41, 1);
    font-size: 16px;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.coming_soon_body{
    padding: 25px 0px 50px 0px;
    width: 100%;
    position: relative;
    &::before{
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        left: 0;
        top: 0;
        background-image: url('../images/corner_1.webp');
        background-size: contain;
        background-repeat: no-repeat;
    }
    &::after{
        content: '';
        position: absolute;
        width: 250px;
        height: 70px;
        right: 0;
        top: 0;
        background-image: url('../images/corner_2.webp');
        background-size: contain;
        background-repeat: no-repeat;
    }
    .overlay{
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 0px;
        .overlay_img{
            width: 100%;
        }
    }
    .coming_soon_body_container{
        position: relative;
        z-index: +9;
        h1{
            font-weight: 600;
            font-size: 40px;
            font-family: Outfit;
            color: #114264;
            span{
                color: #FF7F50;
            }
        }
    }
}
.form_group{
    background-color: #ffffff;
    border: 1px solid #CACACA;
    padding: 5px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    input{
        border: 0px;
        outline: none !important;
        box-shadow: none !important;
        height: 45px;
    }
    .btn.btn-warning{
        background-color: #FF7F50;
        border: 1px solid #FF7F50;
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
        height: 45px;
        width: 150px;
    }
}
footer{
    padding: 10px;
    background-color: #195A82;
    text-align: center;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}