* {
    font-family: 'Inter', sans-serif;
    margin: 0px;
    padding: 0px;
    letter-spacing: 1.44px;
}

.auth {
    height: 100%;
    width: 100%;
    display: flex;
    position: absolute;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: #1a1a1a;
}

.form_auth {
    background-color: #00000080;
    backdrop-filter: blur(25px);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    padding:30px;
    margin: 40px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    max-height: 200px;
    width: -webkit-fill-available;
    height: -webkit-fill-available;
}

.form_auth h1 {
    color: #cdcdcd;
    padding-bottom: 2px;
    border-bottom: 3px solid rgb(205 205 205);
    font-size: 19px;
    font-weight: 900;
    margin-bottom: 20px;
}

.form_auth p {
    color: #c0c0c0;
    font-size: 14px;
    margin-left: 5px;
    margin-bottom: 3px;
    font-weight: 700;
}

.form_auth input {
    color: #c0c0c0;
    font-size: 14px;
    font-weight: 900;
    border-radius: 6px;
    
    background-color: #1a1a1a;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
    padding: 10px;
    margin-bottom: 10px;
}