* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body, html {
    height: 100%;
}

/* Fundo dividido */
.background {
    height: 100%;
    background: linear-gradient(
        to bottom,
        #ffffff 50%,
        #000000 50%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card */
.recover-card {
    background: #ffffff;
    width: 370px;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: relative;
}

/* Logo */
.logo {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 70px;
}

/* Título */
.recover-card h2 {
    margin-top: 50px;
    margin-bottom: 10px;
    letter-spacing: 2px;
    font-weight: 400;
}

/* Texto informativo */
.info {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
}

/* Input */
.recover-card input {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: none;
    border-radius: 30px;
    background: #eeeeee;
    outline: none;
    font-size: 14px;
}

/* Botão */
.recover-card button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 30px;
    background: #fff7b2;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.recover-card button:hover {
    background: #f5ea7a;
}

/* Voltar */
.back {
    display: block;
    margin-top: 18px;
    font-size: 13px;
    color: #555;
    text-decoration: none;
}

.back:hover {
    text-decoration: underline;
}
