/* signup page css */
.signup-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px; 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    text-align: center;
    overflow: hidden; 
    transition: all 0.3s ease;
}

.signup-container:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px; 
    font-weight: 700;
}

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

.input-group label {
    display: block;
    text-align: left;
    font-weight: 600;
    margin-bottom: 5px; 
    font-size: 14px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 12px; 
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    margin-top: 5px;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

.name-address-fields {
    display: flex;
    justify-content: space-between;
    gap: 10px; 
    margin-bottom: 15px;
}

.name-address-fields .input-group {
    width: 48%;
}

.password-strength {
    font-size: 12px;
    color: #777;
    margin-bottom: 5px; 
    text-align: left;
}

.checkbox-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px; 
    text-align: left;
}

.checkbox-container input {
    margin-right: 8px;
}

button {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

.login-link {
    font-size: 14px;
    margin-top: 15px; 
}

.login-link a {
    color: #4CAF50;
    text-decoration: none;
}

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

.g-recaptcha {
    margin-top: 10px; 
}

@media (max-width: 768px) {
    .name-address-fields {
        flex-direction: column;
    }

    .name-address-fields .input-group {
        width: 100%;
    }
}

.alert {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
}

.alert-danger {
    background-color: #ffdddd;
    color: red;
    border: 1px solid red;
}

.alert-success {
    background-color: #ddffdd;
    color: green;
    border: 1px solid green;
}

