*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: linear-gradient(135deg, #fd6585 10%, #0d25b9 100%);
    background-size: contain;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    /* background-color: rgb(215, 214, 214); */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.card {
width: 550px;
background-color: #000;
height: 480px;
border-radius: 1rem;
padding: 2rem;
margin: 1rem;
box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.75);
}
.title {
margin: auto;
color: white;
text-align: center;
margin-bottom: 1rem;
}

.subtitle {
color: rgb(218, 218, 218);
text-align: center;
margin-bottom: 3rem;
}

.inputs_container {
display: flex;
flex-direction: column;
}

.inputs_container input {
width: 95%;
margin: 1.5rem auto;
padding: 1rem;
border-radius: 25px;
font-size: 1rem;
font-family: inherit;
outline: 0;
border: 0;
}

.login_button {
display: block;
margin: 1rem auto 1rem auto;
width: 55%;
padding: 0.75rem 1rem;
border-radius: 25px;
outline: 0;
font-size: 1rem;
font-family: inherit;
cursor: pointer;
background-color: #4e65f7;
color: white;
border: 2px solid transparent;
}

.login_button:hover {
border: 2px solid #4e65f7;
background-color: #000;
}

.link_container {
display: flex;
justify-content: center;
color: white;
}

.small {
color: rgb(218, 218, 218);
text-align: center;
font-size: 0.85rem;
text-decoration: underline;
margin-bottom: 5rem;
cursor: pointer;
}

.icons {
display: flex;
justify-content: center;
gap: 1.5rem;
}

.icon {
color: white;
cursor: pointer;
}

.error_msg {
color: red;
padding-left: 1rem;
font-size: 0.85rem;
margin: 0;
}

@media only screen and (max-width: 620px) {
.card {
    width: 90vw;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
}

@media only screen and (max-height: 670px) {
.card {
    height: 500px;
}
}

@media only screen and (max-width: 620px) {
.inputs_container input {
    width: 100%;
}

.login_button {
    width: 100%;
}

.error_msg {
    padding-left: 0.2rem;
}
}

@media only screen and (max-height: 670px) {
.subtitle {
    margin-bottom: 2rem;
}

.small {
    margin-bottom: 3rem;
}
}