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

.form-container {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.form-container img {
    width: 100px;
    margin-bottom: 20px;
}

.form-control {
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    color: #333;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 15px;
}

.form-control::placeholder {
    color: #888;
}

.btn-login {
    background-color: #28a745; /* Verde */
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-login:hover {
    background-color: #218838; /* Verde mais escuro */
}

.btn-create {
    background: none;
    border: 1px solid #004080;
    color: #004080;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s, color 0.3s;
}

.btn-create:hover {
    background-color: #004080;
    color: #fff;
}

.no-account {
    color: #666;
    font-size: 0.85em;
    margin-top: 10px;
}

