:root {
    --color-primary: #eb3b5a;
    --color-white: #ffffff;
    --color-white-alfa: rgba(255,255,255,.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: url('../img/IMG_3339.JPG');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size:100%;
    font-family: sans-serif;
}



.login-box {
    margin-top: 75px;
    height: auto;
    --color-primary: #eb3b5a;
    --color-white: #ffffff;
    --color-white-alfa: rgba(255,255,255,.5);
    text-align: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    background-color: transparent;
    backdrop-filter: blur(20px);
}

.login-key {
    height: 100px;
    font-size: 80px;
    line-height: 100px;
    background: -webkit-linear-gradient(#27EF9F, #0DB8DE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-title {
    margin-top: 15px;
    text-align: center;
    font-size: 30px;
    letter-spacing: 2px;
    margin-top: 15px;
    font-weight: bold;
    color: #ECF0F5;
}

.login-form {
    margin-top: 25px;
    text-align: left;
}


.form-control:focus {
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 2px solid #0DB8DE;
    outline: 0;
    background-color: #1A2226;
    color: #ECF0F5;
}

input:focus {
    outline: none;
    box-shadow: 0 0 0;
}

label {
    margin-bottom: 0px;
}

.form-control-label {
    font-size: 10px;
    color: #6C6C6C;
    font-weight: bold;
    letter-spacing: 1px;
}

.btn-outline-primary {
    margin-left: 50%;
    width: 100%;
    border-color: #0DB8DE;
    color: #0DB8DE;
    border-radius: 0px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

    .btn-outline-primary:hover {
        background-color: #0DB8DE;
        right: 0px;
    }

.login-btm {
    float: left;
}

.login-button {
    padding-right: 0px;
    text-align: right;
    margin-bottom: 25px;
}

.login-text {
    text-align: left;
    padding-left: 0px;
    color: #A2A4A4;
}

.loginbttm {
    padding: 0px;
}



@media(max-width: 992px) {
    .btn-outline-primary {
        width: 50%;
        border-color: #0DB8DE;
        color: #0DB8DE;
        border-radius: 0px;
        font-weight: bold;
        letter-spacing: 1px;
        box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    }

    .btn-outline-primary {
        margin-right: 22%;
        margin-left: 0%;
    }
}



/* MEDIA QUERIES */
@media screen and (max-width: 1285px) {
    body {
        background-size: 150%;
    }
}

@media screen and (max-width: 900px) {
    body {
        background-size: 250%;
    }
}

@media screen and (max-width: 500px) {
    body {
        background-size: 280%;
    }
    .btn-outline-primary {
        width: 50%;
        border-color: #0DB8DE;
        color: #0DB8DE;
        border-radius: 0px;
        font-weight: bold;
        letter-spacing: 1px;
        box-shadow: 0 1px 3px rgb(0 0 0 / 12%), 0 1px 2px rgb(0 0 0 / 24%);
    }
    .login-box {
        margin: 10px 10px 10px 10px;
    }
}

@media screen and (max-width: 450px) {
    body {
        background-size: 344%;
    }

    .login-box {
        margin: 10px 10px 10px 10px;
    }
    .btn-outline-primary {
        margin-right: 26%;
    }
    }