@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700&display=swap');
@import "helpers/_responsive";

/* GENERAL */
html,body {
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    padding: 0;
    margin: 0;
    color: #000;
    font-weight: 400;
    background-color: #125b6b;
    background: url(../imgs/n/bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    min-height: 100%;
}
a:hover { text-decoration: none; }
img { max-width: 100%; }

#header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: start;
    @include respond-down(sm) { justify-content: center; margin-bottom: 30px; }
    .logo {
        img {
            max-width: 248px;
        }
    }
    .header-right {
        display: flex;
        align-items: center;
        @include respond-down(sm) { display: none; }
        .left {
            padding-right: 30px;
            color: #FFF;
            font-size: 17px;
            a {
                color: #FFF;
                &.active { color: #f3d03f; }
            }
        }
        .right {
            border-left: 1px solid #FFF;
            padding-left: 30px;
            p {
                margin-bottom: 15px;
                color: #FFF;
                font-size: 14px;
                font-weight: 700;
                &:last-child { margin-bottom: 0; }
                img {
                    margin-right: 5px;
                }
                svg { margin-right: 5px; }
            }
        }
    }
}

#main {
    .login-area {
        h3 {
            font-size: 32px;
            color: #FFF;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
        }
        #forma {
            max-width: 320px;
            margin: 0 auto;
            .form-group {
                position: relative;
                .icon {
                    position: absolute;
                    right: 15px;
                    top: 9px;
                    cursor: pointer;
                }
                &.user .icon {
                    display: none;
                }
                &.pass { display: none; }
            }
            input {
                height: 40px;
                background: #FFF;
                border-radius: 30px;
                border: 0;
                font-weight: 700;
                font-size: 16px;
                padding: 0 15px;
                &:focus {
                    outline: 0;
                    box-shadow: none;
                }
                &::-webkit-input-placeholder { font-weight: 700; color: #ddd; font-size: 14px; }
                &:-ms-input-placeholder { font-weight: 700; color: #ddd; font-size: 14px; }
                &::placeholder { font-weight: 700; color: #ddd; font-size: 14px; }
                &.readonly {
                    color: rgba(65,65,64,.75);
                    opacity: .76;
                }
            }
            .btns {
                display: flex;
                justify-content: space-between;
                button {
                    height: 40px;
                    border: 2px solid #FFF;
                    color: #FFF;
                    font-weight: 700;
                    border-radius: 30px;
                    padding: 0 20px;
                    background: transparent;
                    &#booom {
                        background: #1C8A99;
                        border: 2px solid #1C8A99
                    }
                    &.submit {
                        background: #1C8A99;
                        border: 2px solid #1C8A99
                    }
                    &:focus {
                        outline: 0;
                        box-shadow: none;
                    }
                    &.disabled { opacity: 0.5; }
                }
            }
            .btns2 {
                margin: 20px 0;
                display: flex;
                justify-content: space-between;
                button {
                    height: 40px;
                    border: 0;
                    color: #FFF;
                    font-weight: 400;
                    padding: 0 0;
                    background: transparent;
                    &:focus {
                        outline: 0;
                        box-shadow: none;
                    }
                }
            }
        }
        .infos {
            max-width: 320px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            .sym {
                margin-right: 15px;
            }
            p {
                margin-bottom: 0;
                color: #FFF;
                font-size: 13px;
                line-height: 16px;
            }
        }
    }
    .bottom {
        text-align: center;
        margin-top: 120px;
        padding-bottom: 30px;
        @include respond-down(sm) { margin-top: 50px; }
        ul {
            padding: 0;
            margin: 0;
            li {
                list-style-type: none;
                display: inline-block;
                margin-right: 50px;
                font-size: 38px;
                color: #FFF;
                &:last-child { margin-right: 0; }
                @include respond-down(sm) {
                    margin-right: 30px;
                }
            }
        }
        p {
            color: #FFf;
            margin-bottom: 0;
        }
    }
}

#modal {
    .modal-dialog { max-width: 750px; margin-top: 150px; }
    .modal-body { padding: 0; }
    .head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 2px solid #EDF2F3;
        padding-bottom: 10px;
        padding-top: 10px;
        padding-left: 20px;
        padding-right: 20px;
        h3 {
            color: #125b6b;
            font-size: 14px;
            font-weight: 700;
            margin: 0;
        }
    }
    a {
        color: #FFF;
        font-weight: 700;
        border-radius: 30px;
        padding: 5px 20px;
        background: #1C8A99;
        border: 2px solid #1C8A99;
        display: inline-block;
        &:focus {
            outline: 0;
            box-shadow: none;
        }
    }
    #forma {
        padding-top: 20px;
        p {
            margin-bottom: 30px;
            color: #414140;
            font-size: 16px;
        }
        .sms-area {
            background: #F0F2EC;
            padding: 20px;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
            p {
                font-size: 14px;
                &.time {
                    font-size: 18px;
                    font-weight: 600;
                }
            }
        }
        label {
            display: block;
            position: relative;
            margin-bottom: 10px;
            &.has-error {
                input { border-bottom: 2px solid red; }
                .error-message {
                    font-size: 13px;
                    color: red;
                    margin-top: 3px;
                    text-align: left;
                }
            }
            .label-txt {
                position: absolute;
                top: 12px;
                left: 0;
                transition: ease .1s;
                margin-bottom: 0;
                font-size: 16px;
                color: #8c8c8c;
                font-weight: 400;
                &.label-active {
                    top: 0;
                    font-size: 12px;
                }
            }
            input {
                width: 100%;
                background-color: transparent;
                padding-left: 0;
                padding-right: 0;
                padding-top: 30px;
                padding-bottom: 15px;
                border: 0;
                outline: none;
                height: 40px;
                color: #000;
                border-radius: 0;
                border-bottom: 1px solid #C0C0C0;
                font-size: 16px;
                &:focus {
                    border-color: #125B6B;
                }
            }
        }
        .btns {
            margin-top: 30px;
            button {
                height: 40px;
                color: #FFF;
                font-weight: 700;
                border-radius: 30px;
                padding: 0 20px;
                background: #1C8A99;
                border: 2px solid #1C8A99;
                &:focus {
                    outline: 0;
                    box-shadow: none;
                }
            }
        }
    }
}

#wrapper {
  text-align: center;
  p {
    color: #666;
  }
}
#wrapper .loader .spinner-border  {
    width: 50px;
    height: 50px;
    vertical-align: text-bottom;
    border: 5px solid #C9C9C5;
    border-right-color: #1C8A99;
    margin-top: 20px;
    margin-bottom: 20px;
}

#whitebox {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999999999999999999999;
    background: #FFF;
}