body {
    font-family: Arial, sans-serif;
    background-color: #FFD7D7;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.s{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
}
.container {
    background-color: #FFD7D7;
    max-width: 600px;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.logo {
    width: 50px;
    height: 50px;
    background-color: #FF9999;
    margin-left: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo::before {
    color: white;
    font-size: 24px;
}
img {
    width: 70px;
    height: 70px;
}
h1 {
    color: #FF6666;
    font-size: 24px;
    margin: 0;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #333;
}
input, textarea {
    padding: 8px;
    border: 1px solid #FFB3B3;
    border-radius: 5px;
    background-color: #FFF0F0;
}
textarea {
    resize: vertical;
}
.full-width {
    grid-column: span 3;
}
.back-button {
    background-color: #FF9999;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    margin-top: 20px;
}
.back-button:hover {
    background-color: #FF8080;
}