:root {
    --red: rgb(29,144,188);
    --blue:rgb(172,26,55);
}
body {
    margin: 0;
    padding: 0;
    background: url(https://i.ibb.co/VQmtgjh/6845078.png) no-repeat;
    height: 100vh;
    font-family: sans-serif;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

@media screen and (max-width: 600px) {
    body {
        background-size: cover;
    }
}

.loginBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    min-height: 200px;
    /* background: var(--red); */
    background: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-sizing: border-box;
}

.user {
    margin: 0 auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 50% !important;
}

h3 {
    margin: 0;
    padding: 0 0 20px;
    color: var(--blue);
    text-align: center;
}

.loginBox input {
    width: 100%;
    margin-bottom: 20px;
}

.loginBox input[type="text"],
.loginBox input[type="password"] {
    border: none;
    border-bottom: 2px solid var(--blue);
    outline: none;
    height: 40px;
    color: black;
    background: transparent;
    font-size: 16px;
    padding-left: 20px;
    box-sizing: border-box;
}

.loginBox input[type="text"]:hover,
.loginBox input[type="password"]:hover {
    color: black;
    border-radius: 10px;
    border: 1px solid var(--blue);
    box-shadow: 0 0 5px rgba(0, 255, 0, .3), 0 0 10px rgba(0, 255, 0, .2), 0 0 15px rgba(0, 255, 0, .1), 0 2px 0 black;
}

.loginBox input[type="text"]:focus,
.loginBox input[type="password"]:focus {
    outline: none !important;
    height: 40px !important;
    color: black !important;
    background: transparent !important;
    font-size: 16px !important;
    padding-left: 20px !important;
    box-sizing: border-box !important;
    border-bottom: 2px solid var(--blue) !important;
}

.inputBox {
    position: relative;
}

.inputBox span {
    position: absolute;
    top: 10px;
    color: #262626;
}

.loginBox input[type="submit"] {
    border: none;
    outline: none;
    height: 40px;
    font-size: 16px;
    background: var(--blue);
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
}

.loginBox a {
    color: #262626;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    display: block;
}

a:hover {
    color: #00ffff;
}

p {
    color: #0000ff;
}
@media only screen and (max-width:400px){
	.loginBox {
        width: 300px;
    }
}

@media only screen and (max-width:600px){
    body {
        background: var(--red);
    }
}
.user-icon {
    position: absolute !important;
    top: 9% !important;
    left: 1% !important;
    color: var(--blue);
}
.password-icon{
    position: absolute !important;
    top: 58%;
    left: 1%;
    color: var(--blue);
}