@font-face {
    font-family: "Athiti-Medium";
    src: url(../font/Athiti-Medium.ttf);
}

* {
    font-family: "Athiti-Medium" !important;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    user-select: none;
    margin: 0;
    padding: 0;
}

body {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: auto;
    background-image: linear-gradient(to right, #2f80ed, #0c630f);
}

.container {
    border-radius: 10px;
    background-color: rgb(255,248,230);
    margin-top: 90px;
    width: 700px;
    height: 720px;
}

.logo-cont {
    position: relative;
    /* border: 0.5px red solid; */
    text-align: center;
}

.logo-cont > img {
    width: 200px;
}

.header-form {
    position: relative;
    text-align: center;
    width: 100%;
    font-size: 30px;
    font-weight: 600;
}

.form-control {
    text-align: center;
}

@media only screen and (device-width: 414px) and (device-height: 896px) and (-webkit-device-pixel-ratio: 2) {
    .container {
        width: 300px;
        height: 550px;
    }
    .logo-cont > img {
        width: 70px;
    }

    .header-form {
        position: relative;
        text-align: center;
        width: 100%;
        font-size: 15px;
        font-weight: 600;
    }
    .form-group > input {
        width: 100%;
    }
}