.signup-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    width: 350px;
    margin: 0 auto;
    margin-top: 70px;
    margin-bottom: 40px;
}

.signup-container:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.header-sec {
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group input[type="checkbox"] {
    width: auto;
}

.form-group .checkbox-label {
    display: inline-block;
    margin-left: 5px;
}

.signup-button {
    width: 100%;
    background-color: #205781;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.signup-button:hover {
    background: #11c022;
    transition: 0.3s;
    font-weight: bold;
}

.login-link {
    text-align: center;
    margin-top: 10px;
}

.login-link a {
    color: #007BFF;
    text-decoration: none;
}

.login-link a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .signup-container {
        width: 80%;  
        margin-top: 50px;
    }

    .signup-button {
        font-size: 14px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .signup-container {
        width: 90%; 
        margin-top: 40px;
    }

    .header-sec h2 {
        font-size: 22px; 
    }

    .signup-button {
        font-size: 14px;
        padding: 8px;
    }
}
