@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Ubuntu', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
    background-image: url(images/bg12.jpg);
    background-size: cover;
    opacity: 2;
}
header{
    border: 10px solid balck;
    width: 50px;
    height: 50px;
    
    position: absolute;
    top: 25px;
    left: 30px;
}
.back i{
    background: linear-gradient(to right, #8d68c5, #e34494);
    padding: 20px;
    border-radius: 10px;
    color: beige;
}
.back i:hover{
    color: black;
    background: linear-gradient(to right, #9677c5, #e76aa8);
    


}



.container {
  
    /* background-color: rgba(255, 255, 255, 0.8);  */
    background-color: rgba(227, 230, 243,0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 1rem 3rem;
    border-radius: .5rem;
    width: 40%;
}

.container form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.container h2 {
    font-size: 1.5rem;
    margin: 2rem;
}

.container form input {
    background: transparent;
    font-weight: lighter;
    border: none;
}

input:focus {
    outline: none;
}

.container form .username {
    margin-bottom: .7rem;
}

.container form i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

.container form input {
    font-size: 1rem;
}

.userArea {
    margin-bottom: .7rem;
}

.container form .forgotPassword {
    position: absolute;
    right: 0rem;
    cursor: pointer;
    bottom: 14.5rem;
    color: rgb(113, 119, 124);
    font-size: .8rem;
}

.inputDiv {
    display: flex;
    flex-direction: column;
    padding-bottom: .8rem;
}

.formBottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.formBottom ul {
    margin-bottom: 3rem;
}

.formBottom p {
    margin-bottom: .5rem;
    font-size: .8rem;
}

.flexUl {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flexUl a {
    text-decoration: none;
}

.flexUl li {
    list-style: none;
}

.flexUl li i {
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fa-brands {
    margin-top: 1rem;
    cursor: pointer;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
}

.fa-google {
    background-color: orangered;
}

.fa-twitter {
    background-color: rgb(43, 71, 228);
}

.fa-facebook-f {
    background-color: darkblue;
}


/* Utility Classes */
.t-center {
    text-align: center;
}


#done {
    border: none;
    border-radius: 0.8rem;
    cursor: pointer;
    padding: 0.7rem 0.8rem;
    background: linear-gradient(to right, #8d68c5, #e34494);
    /* margin-top: 1rem; */
    margin-bottom: 3rem;
    color: #fff;
    text-decoration: none;
    display: grid;
    place-items:center;
    width: 20%;
   
}

#done:hover {
    border: none ;
    border-radius: 0.8rem;
    cursor: pointer;
    padding: 0.7rem 0.8rem;
    background: linear-gradient(to right, #916ec5, #ca4c8b);
    /* margin-top: 1rem; */
    margin-bottom: 3rem;
    color: #000000;
    font-weight: bold;
    text-decoration: none;
    display: grid;
    place-items:center;
    width: 20%;
   
}

#frgt{
    color: blue;
    transition: 0.5s;
}
#frgt:hover{
    color: #000000;
}

#signUp {
    font-size: 1rem;
    cursor: pointer;
}
a{
    text-decoration: none;
}

#signUp:hover {
    color: #8d68c5;
}