* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    background-color: #f8f8f8;
    color: #333;
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}
   * {
    padding: 0px;
    margin: 0px;
    font-family: "Poppins", sans-serif;
}
        .header-symbols,.header-logo,.footer-symbol {
    height: 33px;
    margin-right: 20px;
     transition: all 0.3s ease;
}
.header-symbols:hover,.footer-symbol:hover{
     transform: scale(1.15);
}
.header-logo:hover{
    transform: scale(1.05);
}
.header-symbols-text{
    margin-right: 10px;
    transition: all 0.3s ease;
}
.header-symbols-text:hover{
    color: green;
}
#header-ul-social {
    display: flex;
    list-style: none;
}
#header-ul-buttons {
    display: flex;
    list-style: none;
}
.header-logo{
    height: 80px;
}
#header {
    display: flex;
    justify-content: space-around;
    position: sticky;
    top: 0;
    z-index: 1;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}
#header-socialmedia{
    margin-top:25px ;
}
#header-buttons{
    margin-top:25px ;
}
.header-symbols-text{
    font-size: 20px;
  font-weight: 500;
  color: black;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
}

.form-container {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

.form-container.active {
    display: block;
}

h2 {
    margin-bottom: 20px;
    color: #228B22;
}

input {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f9f9f9;
    color: #000000;
    font-size: 16px;
}

input:focus {
    border-color: #228B22;
    outline: none;
}

button {
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    border: none;
    border-radius: 5px;
    background: #228B22;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

button:hover {
   background-color: darkgreen;
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 20px 0px;
}

.form-p{
    margin-top: 20px;
    font-size: 14px;
}

a {
    color: #228B22;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
