/* Stiluri pentru pagina Contact */

/* Fundal negru și text alb */
body {
    background-color: #111;  /* Fundal negru */
    color: white;  /* Text alb */
}

main {
    max-width: 800px;
    margin: 160px auto 40px auto;
    padding: 0 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

label {
    font-weight: bold;
}

input,
textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background-color: #2c2c2c;
    color: #fff;
    font-size: 1rem;
}

input:focus,
textarea:focus {
    outline: 2px solid #00b894;
}

button {
    background-color: #00b894;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

button:hover {
    background-color: #019874;
}


