body { margin: 0; padding: 0; background-color: #f7c51e; font-family: 'Rubik', sans-serif; display: flex; flex-direction: column; align-items: center; min-height: 100vh; }

.header { 
    width: 100%; height: 250px; background: #000; 
    display: flex; justify-content: center; align-items: center; 
    position: relative; border-bottom-left-radius: 50% 30px; border-bottom-right-radius: 50% 30px; 
}
.header img { width: 80%; max-width: 300px; object-fit: contain; }

.container { width: 90%; max-width: 400px; text-align: center; margin-top: 20px; flex-grow: 1; }

form input { 
    width: 100%; padding: 15px; margin: 10px 0; 
    border: 1px solid #ddd; border-radius: 8px; box-sizing: border-box; 
    font-size: 14px; outline: none;
}

.login-btn { 
    width: 100%; padding: 15px; background: #000; color: #fff; 
    border: none; border-radius: 8px; font-weight: bold; 
    cursor: pointer; font-size: 16px; margin-top: 10px;
}

.links { margin: 15px 0; font-size: 14px; color: #333; }
.links a { color: #007bff; text-decoration: none; font-weight: bold; }

.footer-icons { display: flex; justify-content: center; gap: 20px; margin: 20px 0; }
.footer-icons img { width: 40px; height: 40px; border-radius: 50%; cursor: pointer; border: 1px solid #ccc; }

.footer-text { font-size: 11px; color: #333; line-height: 1.8; margin-bottom: 30px; }

.social-strip { 
    width: 100%; background: #a67c00; display: flex; 
    justify-content: space-around; padding: 12px 0; margin-top: auto; 
}
.social-strip img { width: 28px; transition: 0.3s; }
.social-strip a:active img { transform: scale(0.8); }
