* {
    /*background-color: blueviolet;*/
}

.section-content{
    margin: 10% auto;
}

.login-form-container{
    /*background: #fff;*/
    margin-left: auto;
    margin-right: auto;
    /*width: fit-content;*/
    /*width: 40%;*/
    width: 400px;
    /*background: #ecc5c5;*/
    padding: 20px;
    color: #666;
    display: flex;
    flex-wrap: wrap;
    height: 100%;
    justify-content: center;
    font-family: system-ui;
    font-weight: 500;
}

.login-img-div{
    /*width: 50%;*/
    width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.login-img{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.form-input-div{
    width: 100%;
    display: flex;
    margin-bottom: 10px;
}

.form-input{
    width: 100%;
    border-style: none;
    background-color: rgba(0,0,0,.5);
    box-shadow: none;
    /*border: 1px solid transparent;*/
    /*color: #fff;*/
    color: hsl(308, 100%, 92%);
    -webkit-text-fill-color: aliceblue;
    -webkit-box-shadow: 0 0 0 30px #777777 inset;
    height: 30px;
    padding: 10px 16px;
    border-radius: 6px;
    outline: 0;
}

.form-input:focus{
    border: 2px solid #b93ba2;
}

.login-btn{
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    padding: 10px 16px;
    border-radius: 7px;
    color: #fff;
    /*background: #2296f3;*/
    background: #b93ba2;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out; 
}

.login-btn:hover{
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
    padding: 10px 16px;
    color: #fff;
    /*background: #b93ba2;*/
    /*background-color: #ff00ff;*/
    background-color: #cf3eb5;
    box-shadow: 0 0 5px rgba(255, 0, 255, 1);
    /*box-shadow: 0 0 25px rgba(255, 0, 255, 0.7);*/
}

@media (max-width: 767px) {
    .login-form-container{
        width: 70%;
    }
    
    .login-img-div{
        width: 80%;
    }

    .section-content{
        margin: 30% auto;
    }
}