body {
    font-family: 'Segoe UI', sans-serif;
    background: #f9fafb;
    color: #111827;
    margin: 0;
}

.container {
    width: 90%;
    max-width: 420px;
    margin: 40px auto;
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

h2 {
    text-align: center;
    margin-bottom: 15px;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    background: #f9fafb;
    font-size: 14px;
}

input:focus, textarea:focus, select:focus {
    outline: none;
    border-color: #ff4d6d;
    background: #ffffff;
}

button {
    width: 100%;
    padding: 12px;
    background: #ff4d6d;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #e63956;
}

a {
    display: block;
    text-align: center;
    color: #ff4d6d;
    text-decoration: none;
    margin-top: 10px;
}

a:hover {
    text-decoration: underline;
}

img.profile {
    display: block;
    margin: 15px auto;
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ff4d6d;
}

textarea {
    min-height: 80px;
}



.btn-dashboard {
    display: inline-block;
    width: 80%;
    max-width: 300px;
    text-decoration: none;
    background: #ff4d6d;
    color: #fff;
    padding: 12px;
    margin: 5px 0;
    border-radius: 8px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-dashboard:hover {
    background: #e63956;
}

