* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(120deg, #1a2a6c, #b21f1f, #fdbb2d);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.signup-container {
    width: 100%;
    max-width: 400px;
    padding: 20px;
}

.signup-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.signup-box h1 {
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.signup-box h1 i {
    color: #d4af37;
    margin-right: 10px;
}

.signup-box h2 {
    color: #444;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.3rem;
}

.input-group {
    position: relative;
    margin-bottom: 20px;
}

.input-group i {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #777;
}

.input-group input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.input-group input:focus {
    outline: none;
    border-color: #d4af37;
}

.input-group .fa-eye {
    left: auto;
    right: 15px;
    cursor: pointer;
}

.terms {
    display: flex;
    align-items: center;
    margin: 20px 0;
    font-size: 0.9rem;
}

.terms input {
    margin-right: 10px;
}

button {
    width: 100%;
    padding: 12px;
    background: #000;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #333;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.login-link a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
}

@media (max-width: 480px) {
    .signup-box {
        padding: 20px;
    }
}