body {
    margin: 0;
    height: 100vh;
    background-color: #2a2a2a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
}

.card_login h1 {
    margin: 0;
}

.card_login {
    display: flex;
    flex-direction: column;
    padding-inline: 30px;
    padding-block: 60px;
    background: #212121;
    box-shadow: rgba(0, 0, 0, 0.4) 10px 20px 30px, rgba(0, 0, 0, 0.3) 10px 1px 53px 3px, rgba(1, 0, 0, 0.2) 0px -1px 3px inset;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s;
    display: flex;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    user-select: none;
    font-weight: bolder;
    color: #fff;
}

.card_login:hover {
    transform: scale(1.021);
}

.card_login:active {
    transform: scale(0.95) rotateZ(1.1deg);
}

.card_login form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card_login .input {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #fff;
    background-color: rgb(28, 28, 30);
    box-shadow: 0 0 .4vw rgba(0, 0, 0, 0.5), 0 0 0 .15vw transparent;
    border-radius: 8px;
    border: none;
    outline: none;
    padding: 6px;
    max-width: 190px;
    transition: .4s;
    margin-top: 10px;
}

.card_login .input:hover {
    box-shadow: 0 0 0 .15vw rgba(135, 207, 235, 0.186);
}

.card_login .input:focus {
    box-shadow: 0 0 0 .15vw rgb(255, 255, 255);
}

.card_login button {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #383838;
    box-shadow: #0f0f0f 0px 4px 0px;
    border-radius: 8px;
    padding: 10px 8px;
    color: #fff;
    border: none;
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    width: 70px;
    height: auto;
    transition: transform 200ms, box-shadow 200ms;
    user-select: none;
    margin-left: 5px;
}

.card_login button:active {
    transform: translateY(4px);
    box-shadow: #0f0f0f 0px 0px 0px;
}