* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background-color: #c5c5c5;
    /* background-image: url(/images/signinbg.png); */
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    
}

.container {
    background: linear-gradient(#b49900e5, rgb(255, 170, 14), rgb(77, 68, 68));
    width: 450px;
    padding: 1.5rem;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.9);
    
}

form {
    margin: 0 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 1.3rem 0;
    margin-bottom: 0.4rem;
}

input {
    color: inherit;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #757575;
    padding-left: 1.5rem;
    font-size: 15px;
}

.input-group {
    padding: 1% 0;
    position: relative;
}

.input-group i {
    position: absolute;
    color: black;
}

input:focus {
    background-color: transparent;
    outline: transparent;
    border-bottom: 2px solid hsl(0, 0%, 0%);
}

input::placeholder {
    color: transparent;
}

label {
    color: #e4e4e4;
    position: relative;
    left: 1.2em;
    top: -1.3em;
    cursor: auto;
    transition: 0.4s ease all;
}

input:focus ~ label, input:not(:placeholder-shown) ~ label {
    top: -3em;
    color: hsl(0, 0%, 0%);
    font-size: 15px;
}

.recover {
    text-align: right;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.recover a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.recover a:hover {
    color: #000000;
    text-decoration: underline;
}

.btn {
    font-size: 1.1rem;
    padding: 8px 0;
    border-radius: 5px;
    outline: none;
    border: none;
    width: 100%;
    background-color: rgb(0, 0, 0);
    color: white;
    cursor: pointer;
    transition: 0.9s;
}

.btn:hover {
    background: #faa302;
    color: #000000;
}

.or {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    text-align: center;
}

.icons {
    text-align: center;
}



.links {
    display: flex;
    justify-content: space-around;
    padding: 0 4rem;
    margin-top: 0.9rem;
    font-weight: bold;
}

button {
    color: rgb(248, 248, 248);
    border: none;
    background-color: transparent;
    font-size: 1rem;
    font-weight: bold;
}

button:hover {
    text-decoration: underline;
    color: rgb(#ffffff);
    cursor: pointer;
}
.gain{
    font-family: "poppins";
    font-weight: 900;
}