/* estilo.css */
/* estilo login */
.input-group {
    margin-bottom: 15px;
    text-align: left;
}

.input-group label {
    display: block;
    font-size: 0.95em;
    margin-bottom: 5px;
    color: #A9F5D0;
}

.input-group i {
    margin-right: 6px;
    color: #48D1CC;
}

input[type="email"], input[type="password"] {
    width: 70%;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-size: 1em;
    outline: none;
    background-color: #f5f5f5;
    color: #333;
}

input[type="email"]::placeholder,
input[type="password"]::placeholder {
    color: #aaa;
}

/*style geral */
body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #2C3E50, #00BFFF, #2ECC71);
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

h1, h2 {
    margin: 0.5em 0;
}

p.slogan {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 2em;
}

button, .btn {
    padding: 12px 30px;
    font-size: 1.1em;
    background-color: #2ECC71;
    border: none;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

button:hover, .btn:hover {
    background-color: #27AE60;
}

footer {
    text-align: center;
    font-size: 0.9em;
    padding: 1rem;
    opacity: 0.8;
}
