* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    padding: 25px 15px;
    max-width: 700px !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    margin: 65px 0 25px 0;
}

.column{
    background-color: #E0F4FE !important;
    border-radius: 4px;
}

.logo {
    text-align: center;
    margin: 0 auto;
    width:40%;
}

.sub-text {
    text-align: center;
    font-size: 12px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.login-heading-section{
    font-family: "BricolageGrotesqueCondensed-ExtraBold", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
    font-variation-settings: "wdth" 75;
    text-align: center;
    font-size: 20px !important;
    text-transform: uppercase;
}

.start-button{
    font-family: "BricolageGrotesqueCondensed-SemiBold", sans-serif;
    display: block;
    padding: 10px 42px;
    text-align: center;
    background-color: #5FD5FB;
    text-decoration: none;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    margin: 0 auto;
    border-radius: 4px;
    margin-top: 20px;
}


/* Extra Small devices (landscape phones, 575px and below) */
@media (max-width: 575px) {

    .left-column {
        margin-bottom: 25px;
    }

    .start-button{
        width:100%;
    }

    .column{
        padding: 15px 25px;
    }

}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

    .left-column {
        margin-bottom: 25px;
    }

    .start-button{
        width:80%;
    }

    .column{
        padding: 15px 40px;
    }

    .column{
        padding: 15px 40px;
        background-color: #E0F4FE !important;
    }

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) { 

    .column{
        width: 45%;
    }

    .left-column{
        float: left;
        margin-left: 25px;
    }
    
    .right-column{
        float:right;
        margin-right: 25px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    
}

/* XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {



}