/* General Styles */

body {

    font-family: Arial, sans-serif;

    margin: 0;

    padding: 10px;

 /*   background: url(images/bg.jpg);*/

    background-attachment: scroll;

  background-attachment: fixed;

  background-size: 100%;

  background-color: #F5F5F5; /* culoarea de fundal */

}



/* Container for main layout */

.container {

    max-width: 800px;

    margin: auto;

    padding: 20px;

    background: white;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

    border-radius: 8px;

}



/* Header styles */

header {

    background: #068AFF;

    padding: 20px;

    border-radius: 8px;

    margin-bottom: 20px;

}



.header-content {

    display: flex;

    justify-content: space-between;

    align-items: center;

}



/* Logo and navigation styles */

.logo-container {

    display: flex;

    align-items: center;

}



.site-logo {

    width: 200px; /* Adjust this for logo size */

    height: auto;

    max-width: 100%;

    transition: transform 0.3s; /* Smooth hover effect */

}



.site-logo:hover {

    transform: scale(1.1); /* Zoom effect on hover */

}



nav {

    display: flex;

}



nav a {

    color: white;

    margin: 0 10px;

    text-decoration: none;

}



nav a:hover {

    text-decoration: underline; /* Underline on hover */

}



/* Section styles */

section {

    margin-top: 20px;

    background-color: #f8f9fa;

    padding: 15px;

    margin-bottom: 20px;

    border-radius: 8px;

    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}

/* Form Section */

.form-section {

    margin-bottom: 20px;

}



/* Form element styling */

form {

    margin-top: 20px;

  padding-top: 10px;

  padding-right: 50px;

  padding-bottom: 10px;

  padding-left: 30px;

}



form label {

display: block;

  margin: 10px 0 5px;

  padding: 10px 15px;

  background: #068AFF;

  color: white;

  border: none;

  border-radius: 4px;

}



form input,

form textarea {

    width: 100%; /* Full width for input fields */

    padding: 10px;

    margin-bottom: 10px;

    border: 1px solid #ccc; /* Border for inputs */

    border-radius: 4px; /* Rounded corners */

}



form button {

    width: 100%;

    padding: 10px 15px;

    background: #068AFF; /* Button background color */

    color: white;

    border: none; /* No border */

    border-radius: 4px; /* Rounded corners */

    cursor: pointer; /* Pointer on hover */

}



form button:hover {

    background-color: #0056b3; /* Button hover color */

}



.site-item {

    background: #f9f9f9;

    border: 1px solid #ddd;

    margin: 10px 0;

    padding: 15px;

    border-radius: 5px;

    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);

}



/* Responsive adjustments */

@media (max-width: 600px) {

    .header-content {

        flex-direction: column;

        align-items: flex-start;

    }



    nav {

        margin: 0 10px;

        flex-wrap: wrap; /* Wrap links on small screens */

    }



    nav a {

		margin: 0 10px;

    }

}



/* Ajustări pentru header */



.header-content {

    display: flex;

    justify-content: space-between; /* Distribuie spațiul uniform între elemente */

    align-items: center; /* Aliniază vertical elementele */

}



/* Ajustări pentru logo */

.logo-container {

    margin-right: 20px; /* Spațiu între logo și titlu */

}



h1 {

    margin: 0; /* Elimină marginea implicită */

    font-size: 1.5rem; /* Ajustează dimensiunea fontului, dacă este necesar */

}



/* Asigură că limbajul este aliniat corect */

.language-switch {

margin-left: auto;

  display: flex;

  justify-content: space-between;

  align-items: center;

  }

  

.parteners-url {

    color: #006621;

    font-size: 14px;

    margin: 5px 0;

  }

  

.footer-section {

    text-align: center;

    font-family: Arial, sans-serif;

    font-size: 14px;

    color: #666;

}



.footer-section a {

text-decoration: none;
color: #666;

}



.footer-section a:hover {

    text-decoration: underline; /* Underline on hover */

}





.logout-container {

    text-align: center; /* Centrează conținutul pe orizontală */

    margin-bottom: 20px;

}



.logout-btn {

    padding: 10px 20px;

    background-color: #dc3545;

    color: white;

    text-decoration: none;

    border-radius: 5px;

    transition: background-color 0.3s;

    display: inline-block; /* Asigură că butonul rămâne de dimensiune fixă */

    margin: 0 auto; /* Centrează butonul */

}



.logout-btn:hover {

    background-color: #c82333;

}



.antispam-label {

    display: block;

    align-items: center;

}