.password-recovery {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;

    #style {
        text-align: center;
    }
     input[type="submit"] {
        background: none;
        border: none;
        color: #000;
        text-decoration: none;
        transition: color 0.15s ease-in-out;
        cursor: pointer;
        font: inherit;
        padding: 0;
        margin: 1rem 0;
    }

    input[type="submit"]:hover {
        color: #666;
    }
    .links {
        box-sizing: border-box;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem;
        padding-left: 3rem;
        position: absolute;
        bottom: 2rem;

        @media (max-width: 768px) {
            flex-wrap: wrap;
            justify-content: center;
        }
    }
    .links a {
        color: #000;
        text-decoration: none;
        transition: color 0.15s ease-in-out;
        margin-right: 1rem;
    }
    .links a:hover {
        color: #666;
    }
    label {
        width: 100px;
        @media (max-width: 768px) {
            width: auto;
        }
    }

    input {
        flex: 1;
        padding: 8px;
        border: 1px solid transparent;
        border-bottom-color: #000;
        outline: none;

        @media (max-width: 768px) {
            width: 50%;
        }
    }

}

