@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow", sans-serif;
}

:root {
    --text: #ffffff;
    --border: #dee2e6;
    --dark: #092032;
    --body: #516171;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    --border: green;

}

body {
    background: url(img/bg4.jpg) no-repeat fixed center center;
    background-size: cover;
    background-blend-mode: darken;
    background-color: rgb(0, 0, 0, 0.5);
}

#main-content {
    margin-top: 50px;

}

.span1 {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.span2 {
    font-size: 15px;
    font-weight: 500;
}

.span3 {
    font-style: italic;
    font-size: 15px;
}

.span4 {
    font-size: 50px;
    font-weight: 900;
    text-shadow: 3px 3px 2px rgba(107, 107, 107, 1);
}

.span5 {
    font-size: 120px;
    /* font-weight: 700; */
    font-weight: 900;
    color: #0088ff;
    font-style: italic;
    font-family: 'cursive-font', cursive;
}


.logo {
    width: 100px;
}

#title {
    color: #fff;
}

h2,
h3 {
    font-weight: 700;
    font-size: 2.50em;
    color: var(--text);
}


.login-block {
    width: 350px;
    height: 300px;
    padding: 20px;
    background: #ffffff;
    border-radius: 5px;
    border-top: 5px solid #2b8a3e;
    position: relative;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.login-block .icon {
    display: flex;
    justify-content: baseline;
    justify-content: left;
    justify-items: center;
    align-items: center;
    margin: 0 0 20px 0;
}

.icon box-icon {
    position: absolute;
    margin-left: 3px;
}

.login-block .icon box-icon[name='user'] {
    color: green;
}

.login-block h1 {
    text-align: center;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

.form-control:focus,
.form-check-input:focus {
    box-shadow: none;
}

.form-control,
.input-group-text {
    border-radius: 5px;
}



/* .login-block input {
    align-items: center;
    width: 100%;
    height: 42px; 
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #adb5bd;
    font-size: 14px;
    font-family: Montserrat;
    padding: 0 20px 0 30px;
    outline: none;
} */

#password::placeholder,
#username::placeholder {
    color: #343a40;
}


.login-block input:active,
.login-block input:focus {
    border: 1px solid #2b8a3e;
}

.error-message {
    font-size: 13px;
    margin-top: 15px;
    color: red;
}

.login-block button {
    --color: #228be6;
    background: var(--color);
    display: inline-block;
    width: 100%;
    line-height: 2.5em;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--color);
    transition: color .5s;
    z-index: 1;
    font-size: 17px;
    border-radius: 5px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
}

button:hover {
    --hover: #339af0;
    color: #ffffff;
    background: var(--hover);
    border: 1px solid var(--hover);
}

@media(max-width: 1200px) {
    #main-content {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
    }

    .login-block {
        margin-top: 20px;
        margin-bottom: 20px;
    }

}

/* @media (max-width: 480px) {
    .title .span3 {
        font-size: 10px;
    }
} */
/* .span4 {
    font-size: 50px;
    font-weight: 500;
    font-family: 'cursive-font', cursive;
} */

@media (max-width: 780px) {
    .span1 {
        font-size: 17px;
        font-weight: 500;
    }

    .span2 {
        font-size: 15px;
        font-weight: 300;
    }

    .span3 {
        font-style: italic;
        font-size: 13px;
    }

    .span4 {
        font-size: 30px;
    }

    .span5 {
        font-size: 50px;
    }

    .logo {
        width: 80px;
    }

}

@media (max-width: 560px) {

    .span1 {
        font-size: 15px;
        font-weight: 500;
    }

    .span2 {
        font-size: 13px;
        font-weight: 300;
    }

    .span3 {
        font-style: italic;
        font-size: 11px;
    }

    .span4 {
        font-size: 20px;
    }

    .span5 {
        font-size: 50px;
    }

    .login-block {
        width: 350px;
    }


    .logo {
        width: 80px;
    }



}