.login-box {
    position: absolute;
    width: 600px;
    height: 500px;
    background-repeat: no-repeat;
    background-size: 100%;
    left: 50px;
    bottom: 50px;
    background-image: url(../assets/ui/login/1.png);
    color: #BA5E01;
    padding: 50px 60px;
    display: none;
    zoom: 0.5;
}

.login-text {
    font-size: 30px;
    margin: 10px 0;
}


.login-input {
    width: 100%;
    height: 50px;
    border: 5px solid #D16B00;
    border-radius: 25px;
    background-color: orange;
    font-size: 25px;
    padding: 10px;
    outline:none;
}

input:focus {
    border: 5px solid #D16B00;
}


.flex-between {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-button {
    position: relative;
    width: 150px;
    height: 65px;
    box-shadow: 1px 1px 3px 4px #a9a9a9;
    border-radius: 36px;
}

.login-button img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    transition: all 0.3s ease;
}

.login-button span {
    position: absolute;
    left: 50%;
    top: 50%;
    color: #AC3400;
    font-weight: 100;
    font-size: 30px;
    transform: translate(-50%, -50%);
}
