/* public/css/profile.css */

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.form-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    min-height: 550px;
}

.btn-save {
    background: linear-gradient(90deg, #5adb78, #3fbd5a);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.form-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.form-header h2 {
    margin: 0;
}

.btn-save:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

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

label {
    font-weight: bold;
}

.form-control {
    border-radius: 5px;
}

.row .col-md-6 {
    padding-right: 15px;
    padding-left: 15px;
}

.form-select {
    border-radius: 5px;
    width: 100%;
}

.input-group {
    display: flex;
    align-items: center;
}

.input-group .form-control {
    width: auto;
    flex: 1;
}
