:root{
    --color1: #252525;
    --color2: rgb(245, 146, 68);
}

@media screen and (max-width: 650px) {
    body{
        height: 96vh !important;
        padding: 15px;
    }
    form{
        padding-left: 14px !important;
        padding-right: 14px !important;
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
    form .logo{
        margin-bottom: 10px !important;
    }
    form .logo img{
        width: 180px !important;
    }
    form h6{
        font-size: 0.9rem !important;
        margin-bottom: 14px !important;
    }
    form .form-control{
        font-size: 14px !important;
    }
    .input-group-addon{
        padding: .5rem .6rem !important;
        font-size: 0.9rem !important;
    }
}

body {
    background-color: var(--color1);
    width: 100%;
    height: 100vh;
}

.auth{
    height: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.auth .container{
    width: 100%;
}

#form-login{
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #cecece;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

form .logo{
    margin-bottom: 14px;
}

form .logo img{
    width: 200px;
}

form h6{
    margin-bottom: 24px;
}

form .form-control{
    background-color: #f2f2f2;
    border-color: #cecece;
    border-radius: 0px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.modal .modal-content{
    background: var(--color1) !important;
}

.modal .modal-header{
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
}

.modal .modal-title{
    color: #fff;
    font-weight: bold;
}

.modal .modal-header .close{
    margin-top: 0px !important;
    margin-left: auto;
    opacity: 1 !important;
    color: #fff !important;
}

form input {
    height: 45px;
    color: var(--color1);
    transition: all 0.2s ease-in-out;
}

form input:focus{
    background-color: rgba(255, 255, 255, 0.8) !important;
    border-color: var(--color1) !important;
    box-shadow: none !important;
}

form input::-webkit-input-placeholder {
    /* WebKit browsers */
    color: var(--color1) !important;
}

form input:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: var(--color1) !important;
}

form input::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: var(--color1) !important;
}

form input:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: var(--color1) !important;
}

form select {
    height: 45px !important;
    color: var(--color1);
}

form select::-webkit-input-placeholder {
    /* WebKit browsers */
    color: var(--color1) !important;
}

form select:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: var(--color1) !important;
}

form select::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: var(--color1) !important;
}

form select:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: var(--color1) !important;
}

form .btn {
    height: 45px;
    text-transform: uppercase;
    background: var(--color1);
    color: #fff;
    border-radius: 8px;
}

.row-flex {
    display: flex;
    justify-content: center;
}

.auth .auth-header {
    margin-bottom: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    text-align: center;
}

.auth .auth-header h6{
    font-weight: normal;
    color: rgba(255, 255, 255, 0.7);
}