

.login-container { max-width: 400px; margin: 50px auto; }
.form_main {
width: 220px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgb(255, 255, 255);
padding: 30px 30px 30px 30px;
box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.062);
position: relative;
overflow: hidden;
}

.form_main::before {
position: absolute;
content: "";
width: 300px;
height: 300px;
background-color: rgb(209, 193, 255);
transform: rotate(45deg);
left: -180px;
bottom: 30px;
z-index: 1;
border-radius: 30px;
box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.082);
}

.heading {
font-size: 2em;
color: #2e2e2e;
font-weight: 700;
margin: 5px 0 10px 0;
z-index: 2;
}

.inputContainer {
width: 100%;
position: relative;
display: flex;
align-items: center;
justify-content: center;
z-index: 2;
}

.inputIcon {
position: absolute;
left: 3px;
}

.inputField {
width: 100%;
height: 30px;
background-color: transparent;
border: none;
border-bottom: 2px solid rgb(173, 173, 173);
margin: 10px 0;
color: black;
font-size: .8em;
font-weight: 500;
box-sizing: border-box;
padding-left: 30px;
}

.inputField:focus {
outline: none;
border-bottom: 2px solid rgb(199, 114, 255);
}

.inputField::placeholder {
color: rgb(80, 80, 80);
font-size: 1em;
font-weight: 500;
}

#button {
z-index: 2;
position: relative;
width: 100%;
border: none;
background-color: rgb(162, 104, 255);
height: 30px;
color: white;
font-size: .8em;
font-weight: 500;
letter-spacing: 1px;
margin: 10px;
cursor: pointer;
}

#button:hover {
background-color: rgb(126, 84, 255);
}

.forgotLink {
z-index: 2;
font-size: .7em;
font-weight: 500;
color: rgb(44, 24, 128);
text-decoration: none;
padding: 8px 15px;
border-radius: 20px;
}
.form_main {
width: 368px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: rgb(255, 255, 255);
padding: 30px 30px 30px 30px;
box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.062);
position: relative;
overflow: hidden;
height: 358px;
}
/* From uiverse.io by @Ali-Tahmazi99 */
button {
display: inline-block;
width: 150px;
height: 50px;
border-radius: 10px;
border: 1px solid #03045e;
position: relative;
overflow: hidden;
transition: all 0.5s ease-in;
z-index: 1;
}

button::before,
button::after {
content: '';
position: absolute;
top: 0;
width: 0;
height: 100%;
transform: skew(15deg);
transition: all 0.5s;
overflow: hidden;
z-index: -1;
}

button::before {
left: -10px;
background: #240046;
}

button::after {
right: -10px;
background: #5a189a;
}

button:hover::before,
button:hover::after {
width: 58%;
}

button:hover span {
color: #e0aaff;
transition: 0.3s;
}

button span {
color: #03045e;
font-size: 18px;
transition: all 0.3s ease-in;
}