﻿
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #e6fffa, #f8fafc);
    min-height: 100vh;
}


.user-card {
    border: none;
    border-radius: 18px;
    margin: 50px 0;
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}


    .user-card .card-header {
        background: linear-gradient(135deg, #0ABAB5, #0891B2);
        padding: 22px;
        text-align: center;
    }

        .user-card .card-header h4 {
            margin: 0;
            color: #ffffff;
            font-weight: 700;
            letter-spacing: 0.6px;
        }


    .user-card .card-body {
        padding: 35px;
    }

.form-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}


.form-control,
.form-select {
    border-radius: 12px;
    padding: 12px 14px;
    border: 1.5px solid #d1d5db;
    font-size: 15px;
    transition: all 0.3s ease;
}

    .form-control:focus,
    .form-select:focus {
        border-color: #38bdf8;
        box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.25);
    }


textarea.form-control {
    resize: none;
    min-height: 100px;
}


.form-check-input {
    cursor: pointer;
    transform: scale(1.1);
}

.form-check-label {
    font-weight: 600;
    color: #374151;
    cursor: pointer;
}


.btn-primary {
    background: linear-gradient(135deg, #0ABAB5, #0891B2);
    border: none;
    border-radius: 14px;
    padding: 12px 45px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: linear-gradient(135deg, #1d4ed8, #1e40af);
        transform: translateY(-2px);
        box-shadow: 0 10px 22px rgba(37, 99, 235, 0.35);
    }


.text-danger {
    font-size: 0.85rem;
    margin-top: 4px;
}



/* Responsive*/

@media (max-width: 768px) {
    .user-card .card-body {
        padding: 22px;
    }

    .btn-primary {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .user-card {
        margin: 25px 0;
    }

        .user-card .card-header h4 {
            font-size: 1.1rem;
        }
}
