/* Input Styles */
.form-group {
    margin-bottom: 25px;
    position: relative;
}

input,
textarea,
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s;
}

input:focus,
textarea:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

/* Validation Messages */
.validation-message {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    position: absolute;
    top: 100%;
}

.error {
    color: red;
}

.success {
    color: green;
}

.valid {
    border-color: green;
}

.invalid {
    border-color: red;
}

/* Submit Button */
button {
    /* width: 100%; */
    padding: 12px;
    background: #007BFF;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

button:hover {
    background: #0056b3;
}
