html, * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcToT0QsrCDAgaEBBtofQLMJW9YUdSvotRR-wcx_R9CexNHriQqZAQlNS_3HhGcm4SsXxtc&usqp=CAU'); */
    /* background-size: cover; */
    /* background-position-y: -80px; */
    font-size: 16px;
    font-family: 'Roboto';
  
}

#wrapper {
    min-height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 190px;
}

#form-login {
    border-radius: 20px;
    max-width: 600px;
    /* background: rgb(127, 92, 188); */
    background-image: linear-gradient(to bottom, rgb(255, 220, 220),rgba(245, 13, 13, 0.542),rgba(217, 217, 217, 0.878));
    background-size: 200% 120%;
    flex-grow: 1;
    padding: 30px 30px 40px;
 
}

.form-heading1 {
    font-size: 30px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to left bottom, #000000, #000000, #ff3939,rgb(252, 252, 252));
    background-size: 80% 110%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.form-group {
    padding-bottom: 8px;
    border-bottom: 1px solid #000;
    margin-top: 15px;
    margin-bottom: 20px;
    display: flex;
}

.form-group i {
    /* color: #000; */
    font-size: 14px;
    padding-top: 5px;
    padding-right: 10px;
}

.form-input {
    background: transparent;
    border: 0;
    outline: 0;
    /* color: #000; */
    flex-grow: 1;
}

.form-input::placeholder {
    color: #ffffff;
}

#eye i {
    padding-right: 0;
    cursor: pointer;
}

.form-heading3 {
    text-align: right;
    font-weight: bold;
    
}

.form-heading3 a {


    color: #373737;
    font-size: 15px;
}

.form-heading3 a:hover {
    color: rgb(235, 4, 4);
}

.form-heading2 {
    text-align: center;
    /* color: #000; */
    font-size: 15px;
}

.form-heading2 a:hover {
    font-weight: bold;
    color:  rgb(255, 24, 24);
    transform: scale(1.2);
    font-size: 17px;
}

.form-submit-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.form-submit {
    font-size: 17px;
    border: 0;
    background: transparent;
    border: 1px solid #000;
    border-radius: 10px;
    /* color: #000; */
    /* width: 40%; */
   font-weight: bold;
    padding: 10px 16px 10px 16px;
    transition: 0.25s ease-in-out;
    /* margin-left: 30%; */
    margin-top: 20px;
    margin-bottom: 20px;
    background-image: linear-gradient(rgb(250, 69, 23), #f3f3f3);
    font-family:sans-serif;
}
.form-submit:hover {
    transform: scale(1.2);
    border:0;
    color: #fff;
    cursor: pointer;
    background-image: linear-gradient(rgb(255, 7, 7), #444444);
    
}


a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#checkbox {
    height: 12px;
}

.checkbox-text {
    font-size: 15px;
    margin-left: 5px;
}

#password:focus::placeholder,
#user:focus::placeholder {
    color: #979797;
}
