 @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
    body {
    min-height: 100vh;
    background-color: #36474f;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    padding-top: 100px;
    }

.container {
    width: 100%;
    max-width: 700px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #333;
    overflow-x: auto; /* Permite scroll orizontal */
}
.view-container{
    width: 100%;
    max-width: 100%;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    color: #333;
    overflow-x: auto; /* Permite scroll orizontal */
}

/* CÃ¢mpurile de input È™i textare */
input[type="text"],
input[type="password"],
input[type="date"],
input[type="number"],
input[type="email"],
textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #f9f9f9;
    transition: border-color 0.3s ease;
}
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #f9f9f9;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.3sease;
}
.select2 select2-container select2-container--default select2-container--below select2-container--focus{border:0px;}
.select2-selection__rendered
{
    width: 100%;
    padding: 9px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    background-color: #f9f9f9;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    transition: border-color 0.3sease;
}
button {
    width: 100%;
    padding: 12px;
    margin: 5px;
    font-size: 16px;
    background-color: #43a5f6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* SchimbÄƒ culoarea butonului la hover */
button:hover {
    background-color: #2b93e3;
}
label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}
/* Stilizarea meniului fix (pÄƒstrÄƒm stilul existent al meniului) */
header {
    position: fixed;
    width: 100%;
    min-height: 66px;
    background: #43a5f6;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0; /* AsigurÄƒ cÄƒ meniul este fixat Ã®n partea de sus */
    z-index: 1000; /* AsigurÄƒ cÄƒ meniul rÄƒmÃ¢ne deasupra conÈ›inutului */
}

header .logo {
    color: #fff;
    font-size: 1.75em;
    font-weight: 600;
    text-decoration: none;
}

header ul {
    position: relative;
}

header ul li {
    position: relative;
    list-style: none;
    float: left;
}
header ul li a {
    color: #fff;
    font-size: 1.1em;
    padding: 20px 25px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}
header ul li a:hover {
    background: #2b93e3;
}

@media (max-width: 480px) {
    header {
    position: fixed;
    width: 100%;
    min-height: 66px;
    background: #43a5f6;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0; /* AsigurÄƒ cÄƒ meniul este fixat Ã®n partea de sus */
    z-index: 1000; /* AsigurÄƒ cÄƒ meniul rÄƒmÃ¢ne deasupra conÈ›inutului */
}

header .logo {
    color: #fff;
    font-size: 1.75em;
    font-weight: 600;
    text-decoration: none;
}

header ul {
    position: relative;
}

header ul li {
    position: relative;
    list-style: none;
    float: left;
}

header ul li a {
    color: #fff;
    font-size: 1.1em;
    padding: 20px 25px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

header ul li a:hover {
    background: #2b93e3;
}
}


@media (max-width: 900px) {
    header {
        padding: 10px 20px;
		position: absolute;
    }
    header nav {
        position: absolute;
        width: 100%;
        top: 66px;
        left: 0;
        background: #445964;
        display: none;
    }

    header.active nav {
        display: initial;
    }

    header nav ul li {
        width: 100%;
    }
 header nav ul li:hover ul li {
        background: #546e7b;
    }
    .menuToggle {
        position: relative;
        width: 40px;
        height: 50px;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .menuToggle::before {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: #fff;
        transform: translateY(-12px);
        box-shadow: 0 12px #fff;
    }
    .menuToggle::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 3px;
        background: #fff;
        transform: translateY(12px);
    }
    header.active .menuToggle::before {
        transform: rotate(45deg);
        box-shadow: 0 0px #fff;
    }
    header.active .menuToggle::after {
        transform: rotate(315deg);
    }   
}
  .corp {
    min-height: 100vh;
    background-color: #36474f;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    padding-top: 100px;
}