.form-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

.btn-custom {
    width: 100%;
    font-weight: bold;
    padding: 10px;
    border-radius: 5px;
}

.btn-success-custom {
    background-color: #28a745;
    border-color: #28a745;
    color: white;
}

.btn-success-custom:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-danger-custom {
    background-color: #dc3545;
    border-color: #dc3545;
    color: white;
}

.btn-danger-custom:hover {
    background-color: #c82333;
    border-color: #bd2130;
}