@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

*{
    font-family: "Orbitron", sans-serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #0C021B;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    width: 90%;
    max-width: 400px;
}

.logo img {
    width: 259px;
    height: 190px;
    margin-bottom: 25px;
}

.description {
    margin-top: 20px;
    font-size: 16px;
    color: #ccc;
}

.form-recuperar-senha input[type="email"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 20px;
    border: none;
    outline: none;
    background-color: #1D1D1D;
    color: #fff;
}

.form-recuperar-senha button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border-radius: 20px;
    border: none;
    background-color: #FF3B9D;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    outline: none;
}

.links {
    margin-top: 20px;
}

.voltar {
    color: #FF3B9D;
    text-decoration: none;
    font-size: 14px;
}

.voltar:hover {
    text-decoration: underline;
}
