

body {
    font-family: 'Arial', sans-serif;
    background-color: #0d0d0d;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #000000, #00021a, #01295ad7, #04036ad2, #000322, #000000 );
    animation: gradientAnimation 5s ease infinite;
    z-index: 0;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    width: 350px;
    position: relative;
    overflow: hidden;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #00bfff;
}

.form {
    opacity: 1;
    transition: opacity 0.5s ease;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input {
    width: 90%;
    padding: 10px;
    border: 1px solid #00bfff;
    border-radius: 5px;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 16px; /* Aumenta o tamanho da fonte */
}

input:focus {
    border-color: #00ffff;
    outline: none;
}

.password-container {
    position: relative;
}

.eye-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
}

button {
    margin-top:15px;
    width: 90%;
    padding: 10px;
    background-color: #00bfff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 16px; /* Aumenta o tamanho da fonte */
}

button:hover {
    color: #0d0d0d;
    background-color: #00ffff;
}

@media (max-width: 400px) {
    .container {
        width: 90%;
    }

    input, button {
        width: 100%;
    }
}