* {
    padding: 0;
    margin: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: lightcyan;
}

.login_content {
    width: 450px;
    text-align: center;
    margin: auto;
    background-color: #ffffff;
    box-shadow: 0px 0px 30px 2px rgba(0, 0, 0, 0.2);
    margin-top: 90px;
    border: none;
    border-radius: 10px;
}

.login_content form {
    padding: 30px;
}

.login_content form .title {
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 900;
    color: #575757;
    text-shadow: 0px 1px 1px rgb(108, 49, 49);
    ;
}

form .logo_name img {
    height: 60px;
    margin-bottom: 20px;
}


.input_div>div {
    position: relative;
    height: 45px;
    padding: 0 20px;
}

.input {
    width: 100%;
    height: 38px;
    background: #FFFFFF;
    border: none;
    font-size: 16px;
    border-bottom: 2px solid rgb(116, 116, 116);
    padding-left: 10px;
    font-weight: 600;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.input:focus {
    outline: none;
}

.btn {
    width: 90%;
    margin-top: 10%;
    height: 38px;
    border-radius: 25px;
    border: none;
    background: rgb(0, 212, 255);
    background: linear-gradient(90deg, rgba(0, 212, 255, 1) 0%, rgba(120, 120, 255, 1) 47%, rgba(186, 61, 174, 1) 100%, rgba(0, 199, 241, 1) 100%);
    font-size: 20px;
    color: white;
    font-weight: 600;
}

.bottom_text{
    margin-top: 40px;
}

.bottom_text span{
    color: rgb(66, 66, 255);
    font-weight: 800;
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

@media (max-width: 950px) {
    .login_content {
        margin-top: 250px;
    }
}