*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
body{
    background-color: #c9d6ff;
    background: linear-gradient(to right, #e2e2e2, #c9d6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
}
.container{
    background-color: #fff;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);
    position: relative;
    overflow: hidden;
    width: 450px;
    max-width: 100%;
    padding: 40px;
    margin: 10px;
}
.form-title{
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #3b3b3b;
}
.input-group{
    position: relative;
    margin: 20px 0;
}
.input-group i{
    position: absolute;
    padding: 10px 5px;
    color: #727272;
}
input{
    width: 100%;
    padding: 10px 5px 10px 30px;
    border: none;
    border-bottom: 1px solid #727272;
    outline: none;
    background: transparent;
    font-size: 16px;
}
input:focus{
    border-bottom: 2px solid #5b21b6;
}
label{
    position: absolute;
    left: 30px;
    top: 10px;
    color: #727272;
    pointer-events: none;
    transition: 0.3s ease all;
}
input:focus~label,
input:not(:placeholder-shown)~label{
    top: -15px;
    font-size: 13px;
    color: #5b21b6;
}
.recover{
    text-align: right;
    margin-bottom: 20px;
}
.recover a{
    text-decoration: none;
    color: #2e2e2e;
}
.recover a:hover{
    color: #5b21b6;
    text-decoration: underline;
}
.btn{
    font-size: 18px;
    padding: 10px 0;
    border-radius: 10px;
    border: none;
    outline: none;
    background-color: #5b21b6;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.btn:hover{
    background-color: #3b0764;
}
.or{
    text-align: center;
    margin: 15px 0;
    color: #727272;
}
.icons{
    text-align: center;
    margin-bottom: 15px;
}
.icons i{
    color: #5b21b6;
    padding: 12px;
    border: 1px solid #727272;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 10px;
    transition: 0.3s;
}
.icons i:hover{
    background-color: #5b21b6;
    color: #fff;
    border: 1px solid #5b21b6;
}
.links{
    display: flex;
    justify-content: space-around;
    padding: 0 10px;
    margin-top: 10px;
}
.links button{
    color: #5b21b6;
    border: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}
.links button:hover{
    text-decoration: underline;
}
