.login {
    /* background-image: url('/assets/images/login-form-img.jpeg'); */
    background-image: url('https://plus.unsplash.com/premium_photo-1661274078177-3975521e1101?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTN8fGRvY3RvcnN8ZW58MHx8MHx8fDA%3D');
    background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        /* padding-left: 4vw;
        position: relative;
        color: #fff; */
    position: relative;
    height: 100vh;
    width: 100%;

    
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    /* Firefox */
    input[type=number] {
        -moz-appearance: textfield;
    }

    .login-content {
        position: relative;
        z-index: 1;
        background-color: #fff;
        box-shadow: #fff 0px 7px 29px 0px;
        width: 50%;

        button {
            /* background: rgb(2, 0, 36); */
            /* background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(22, 9, 121, 1) 60%, rgba(0, 212, 255, 1) 100%, rgba(0, 212, 255, 1) 100%); */
            background-color:#28574e;
            border: none;
            color: #fff;
            position: relative;
            z-index: 2;
            overflow: hidden;
            border-radius: 4px;
        }

        button:hover {
            background-color: #3a8a7b;
        }
        
    }

    .overlay {
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: #00000024;
    }
}

input {
    border: 1.2px solid #00000038;
    border-radius: 4px;
}