/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    height: 100vh;
    align-items: center;
}

.container {
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.container h1 {
    color: #ff5f6d;
    margin-bottom: 10px;
}

.container p {
    color: #444;
    margin-bottom: 20px;
} */

form textarea {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    border: 1px solid #ccc;
    resize: none;
    font-size: 16px;
    margin-bottom: 15px;
}

button, .button {
    background: #ff5f6d;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
    min-width: 100px;
    font-weight: bold;
}
a.button {
    display: inline-block;
    text-decoration: none;
    margin-top: 10px;
    background:rgb(43, 42, 42);
}

form button:hover {
    background: #e14a50;
}

footer {
    margin-top: 20px;
    font-size: 14px;
    color: #aaa;
}
.avatar-container {
    text-align: center;
    margin-bottom: 20px;
}
#avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    cursor: pointer;
}

    .avatar-container {
    text-align: center;
    margin-bottom: 20px;
}
#avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    cursor: pointer;
}

body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 50px;
}
h1 {
    color: #333;
}
h3 {
    color: #555;
}

#link {
    font-weight: bold;   
    cursor: pointer;
}


.message-box {
    background-color: silver;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.success-message {
    background: #fff;
    padding: 40px 60px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}
.success-message h1 {
    color: #27ae60;
    margin-bottom: 16px;
}
.success-message p {
    color: #333;
}
.success-message a {
    display: inline-block;
    margin-top: 20px;
    color: #2980b9;
    text-decoration: none;
}
.success-message a:hover {
    text-decoration: underline;
}

.menu-list li {
    display: inline;
    margin-right: 20px;
    font-weight: bold;
}
.menu-list li a {
    text-decoration: none;
    color: silver;
}

