body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #6dd5ed, #f7797d, #f5a623, #2193b0); /* Gradiente de exemplo, ajuste conforme a imagem */
    background-size: 400% 400%; /* Para animar o gradiente */
    animation: gradientBG 15s ease infinite; /* Animação do gradiente */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.login-container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-form h1 {
    margin-bottom: 25px;
    color: #333;
    font-size: 28px;
    font-weight: bold;
}

.input-group {
    margin-bottom: 20px;
    text-align: left;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon-wrapper i {
    position: absolute;
    left: 15px;
    color: #aaa;
}

.input-icon-wrapper input {
    width: 100%;
    padding: 12px 12px 12px 40px; /* Espaço para o ícone */
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    transition: border-color 0.3s;
}

.input-icon-wrapper input:focus {
    outline: none;
    border-color: #007bff; /* Ou a cor do gradiente do botão */
}

.forgot-password {
    text-align: right;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #007bff; /* Ou a cor do gradiente do botão */
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(to right, #60c4dd, #c86ed2); /* Gradiente do botão, ajuste */
    border: none;
    border-radius: 25px; /* Arredondado como na imagem */
    color: white;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
    margin-bottom: 25px;
}

.login-button:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.or-divider {
    margin: 25px 0;
    display: flex;
    align-items: center;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

.or-divider::before,
.or-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.or-divider span {
    padding: 0 10px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.twitter {
    background-color: #1da1f2;
}

.social-icon.google {
    background-color: #db4437;
}

.signup-link {
    margin-top: 20px;
    font-size: 14px;
    color: #555;
}

.signup-link span {
    margin-right: 5px;
}

.signup-link a {
    color: #007bff; /* Ou a cor do gradiente do botão */
    text-decoration: none;
    font-weight: bold;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Media Queries para Responsividade */
@media (max-width: 480px) {
    .login-container {
        padding: 25px;
    }

    .login-form h1 {
        font-size: 24px;
    }

    .input-icon-wrapper input {
        padding: 10px 10px 10px 35px;
        font-size: 15px;
    }

    .input-icon-wrapper i {
        left: 12px;
        font-size: 0.9em;
    }

    .login-button {
        padding: 10px;
        font-size: 15px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}