﻿.inputBox {
    position: relative;
    width: 100%;
}

    .inputBox input {
        width: 100%;
        padding: 10px;
        border: 1px solid #363636;
        border-radius: 10px;
        outline: none;
        font-size: 1em;
    }

    .inputBox span {
        position: absolute;
        left: 5px;
        padding: 10px;
        pointer-events: none;
        font-size: 1em;
        color: #363636;
        text-transform: uppercase;
        transition: 0.5s;
    }

    .inputBox input:valid ~ span,
    .inputBox input:focus ~ span {
        color: #788190;
        transform: translateX(10px) translateY(-5px);
        font-size: 0.65em;
        padding: 0 10px;
        background: #fff;
        /* border-left: 1px solid #363636;
            border-right: 1px solid #363636; */
        letter-spacing: 0.2em;
    }

    .inputBox:nth-child(2) input:valid ~ span,
    .inputBox:nth-child(2) input:focus ~ span {
        background: #fff;
        color: #788190;
        border-radius: 2px;
    }

    .inputBox input:valid,
    .inputBox input:focus {
        border: 1px solid #788190;
    }



.login {
    margin-bottom: 150px;
    margin-top: 30px;
}

    .login .container .card {
        width: 100%;
        height: 100%;
        box-shadow: 0 2px 6px rgba(136, 136, 136, 0.4);
        padding: 25px;
        border-radius: 20px;
    }

        .login .container .card .img {
            margin-top: 10%;
            margin-bottom: 30%;
        }

    .login img {
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px !important;
        width: 100px;
        height: 100px;
    }

    .login form {
        font-size: 12px;
    }

        .login form input {
            margin-bottom: 3%;
        }

.btn-sign-in {
    width: 100%;
    background-image: linear-gradient(to right, #eda63c 0%, #FFC837 51%, #eda63c 100%);
    /* margin: 10px; */
    padding: 10px;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    border-radius: 10px;
    border: none;
    display: block;
    margin-top: 20px;
}

    .btn-sign-in:hover {
        background-position: right center;
        color: #fff;
        text-decoration: none;
    }

@media screen and (max-width: 281px) {
    .login .container .card {
        width: 260px;
    }

        .login .container .card img {
            width: 60px;
            height: 60px;
        }
}
