body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.container {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 400px;
    width: 85%;
}

.container h2 {
    margin-bottom: 10px;
}

.container p {
    margin-bottom: 20px;
    color: gray;
}

.container input,
.container textarea {
    width: calc(100% - 22px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.container input:focus,
.container textarea:focus,
.container button:focus {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
}

.container button {
    width: 189px;
    height: 40px;
    padding: 0;
    background-color: #007bff;
    border: none;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 10px auto;
}

.container button:hover {
    background-color: #0056b3;
}

.or {
    margin: 20px 0;
    font-weight: bold;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-buttons img {
    width: 189px;
    height: 40px;
    margin-bottom: 10px;
    cursor: pointer; 
}

.feedback-container {
    position: relative;
}

.char-count {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 12px;
    color: grey;
}

#submitFeedbackButton:disabled {
    background-color: grey;
    cursor: default;
    opacity: 0.7;
}

#deleteButton:disabled{
    background-color: grey;
    cursor: default;
    opacity: 0.7;
}

#warning-label {
    display: none;
    color: red;
    font-size: 0.8em;
    margin-top: 5px;
    text-align: left;
  }
