.signup-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    margin-top: 80px;
}

.logo-container img {
    width: 150px;
    margin-bottom: 10px;
}

.form-title {
    font-size: 40px;
    font-weight: 900;
    color: #007A36;  
}

form {
    background: white;
    padding: 30px;
    /* border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
    max-width: 600px;
    width: 100%;
}

input, select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn-signup {
    width: 100%;
    background: #007A36;
    color: white;
    padding: 15px;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
}

.login-link {
    margin-top: 20px;
}


@media (max-width: 728px) {
    .signup-container{
        margin-top: 0px;
    }
    .form-title{
        font-size: 24px;
    }
}