*{
    padding: 0;
    margin: 0;
}

.header{
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: static;
    top: 0;
    z-index: 100;
}
.top-bar{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 1rem;
            border-bottom: 1px solid #eee;
}
.email-info {
    color: #d6d1d1;
    font-size: 0.9rem;
}
.top-icons {
    display: flex;
    gap: 1rem; align-items: center;
}
.top-icons .icon {
    cursor: pointer;
    font-size: 1.1rem;
    color: #666;
}
.top-icons .icon:hover {
    color: #FF8C42;
}
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
}
.logo{
    display: flex;
    align-items: center;
    gap:0.5rem;
}
.logo img{
    width: 120px;
    height: auto;
}
.nav-menu{
    display: flex;
    list-style: none;
    gap:30px;
    align-items: center;
}
.nav-menu a {
     text-decoration: none;
    color: #333;
    font-weight: 500;     
}
.nav-menu a:hover{
    color: #FF8C42;
}
.nav-and-signin {
     display: flex;
     align-items: center;
    gap: 2rem;
}
.nav-and-signin {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.sign-in-btn {
    background: #354d79;
    color: white;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}
.sign-in-btn:hover {
    background: #253e68;
}
.footer{
    background: #e2dede;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.1rem;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}
.footer-section ul li a:hover {
    color: #FF8C42;
}
.company-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.company-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.social-icons img{
    width: 30px;
}
.company-logo img{
    width: 120px;
}
img{
    width: 60px;
}
.company-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 3px solid orange;
    padding-top: 10px;
    margin-top: 20px;
}

.footer-bottom .copyright {
    margin: 0;
    flex: 1;
    text-align: left;
}

.footer-bottom .social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    flex: 1;
}
.social-links a {
    color: #666;
    font-size: 1.2rem;
    transition: color 0.3s;
}
.social-links a:hover {
    color: #FF8C42;
}
main{
    background: url("sign\ up.png");
    background-size: cover;
    background-position: center;
    height: 100vh;
}
h1 {
    padding-right: 50%;
    font-family: Lobster; 
    font-style: Regular;
    text-align: center;
    color: #333;
    margin-top: 50px;
    font-size: 2.5rem;
}
#title{
    padding-right: 50%;
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    margin-top: 10px;
}
form {
    max-width: 400px;
    margin: 20px 20px;
    padding: 20px;
    padding-left: 90px;
    border-radius: 10px;
}
#name, #email, #phone,#password, #confirm-password {
   width: 100%;
   padding: 0.5rem;
   margin-bottom: 1rem;
   border:none;
   border-radius: 5px;
   font-size: 1rem;
   background-color: #dddada52;
}
#btn-up{
    width: 80%;
    height: 50px;
    padding: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    background-color: #354d79;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.5rem;
    cursor: pointer;
}
#btn-up:hover {
    background-color: #253e68;
}
#btn-google{
    border: solid 1px #faae3d;
    background: none;
    width: 80%;
    height: 50px;
    margin:20px 42px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #0a0600;
}
#acc{
    padding-left: 90px;
}
#acc a {
    color: #faae3d;
}