﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Quicksand', sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #323232;
}

sectionLogin {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
    overflow: hidden;
}

section .signin {
    width: 325px;
    background: #1a1a1acc;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 0px 20px 0px white;
}

    section .signin .content {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 15px;
    }

        section .signin .content h2 {
            font-size: 2em;
            color: #ef8e24;
            text-transform: uppercase;
        }

        section .signin .content .form {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-top: 25px;
        }

            section .signin .content .form .inputBox {
                position: relative;
                width: 100%;
            }

                section .signin .content .form .inputBox input {
                    /*rsdweb*/
                    /*position: relative;
                    width: 100%;
                    background: #e9e9e9;
                    border: none;
                    outline: none;
                    padding: 30px 10px 7.5px;
                    border-radius: 4px;
                    color: #000000;
                    font-weight: 500;
                    font-size: 1em;*/
                   
                    /*hqmweb*/
                    /*position: relative;
                    width: 100%;
                    background: #3b3b3a;
                    border: none;
                    outline: none;
                    padding: 5px 19px 10px;
                    border-radius: 25px;
                    color: #ffffff;
                    font-weight: 500;
                    font-size: 1em;*/

                    position: relative;
                    width: 100%;
                    background: #3b3b3a;
                    border: none;
                    outline: none;
                    padding: 5px 8px 5px;
                    border-radius: 7px;
                    color: #ffffff;
                    font-weight: 500;
                    font-size: 1em;
                }

                section .signin .content .form .inputBox i {
                    position: absolute;
                    left: 0;
                    padding: 15px 10px;
                    font-style: normal;
                    color: #aaa;
                    transition: 0.5s;
                    pointer-events: none;
                }

.signin .content .form .inputBox input:focus ~ i,
.signin .content .form .inputBox input:valid ~ i {
    /* transform: translateY(-7.5px);
    font-size: 0.8em;
    color: #000000;*/
}

.signin .content .form .links {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

    .signin .content .form .links a {
        color: #fff;
        text-decoration: none;
    }

        .signin .content .form .links a:nth-child(2) {
            color: #ef8e24;
            font-weight: 600;
        }

.signin .content .form .inputBox input[type="submit"] {
    /*    padding: 10px;
    background: #3b3b3a;
    color: #fff;
    font-weight: 600;
    font-size: 1.35em;
    letter-spacing: 0.05em;
    cursor: pointer;*/
    padding: 7px;
    background: #3b3b3a;
    color: #fff;
    font-weight: 500;
    font-size: 1em;
    letter-spacing: 0.05em;
    cursor: pointer;
}

input[type="submit"]:active {
    opacity: 0.6;
}

@media (max-width: 900px) {
    section span {
        width: calc(10vw - 2px);
        height: calc(10vw - 2px);
    }
}

@media (max-width: 600px) {
    section span {
        width: calc(20vw - 2px);
        height: calc(20vw - 2px);
    }
}


.hr-container {
    display: flex;
    align-items: center;
    /* width: 50%;*/
    margin: 20px auto;
}

    .hr-container hr {
        border: none;
        height: 1px;
        width: 107px;
        background-color: #878787;
        margin: 0px 5px;
    }


    .hr-container p {
        color: #878787;
        font-size: 12px;
    }

.centered-content {
    text-align: center;
}

.login-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
