.main-content {
    min-height: calc(100vh - 120px);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-wrapper {
    width: 100%;
    max-width: 600px;
    background-color: #1e2227;
    border-radius: 8px;
    padding: 40px;
    margin: 20px;
}

.form-inner {
    width: 100%;
}

h1 {
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 24px;
}

.form-description {
    color: #9da5b4;
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
    padding-right: 20px; 
}

label {
    display: block;
    color: #9da5b4;
    margin-bottom: 8px;
    font-size: 14px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    background-color: #282c34;
    border: 1px solid #3e4451;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #8db472;
}

button {
    background-color: #8db472;
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s;
}

button:hover {
    background-color: #7a9c62;
}

/* Light theme styles */
.light-theme .form-wrapper {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.light-theme h1 {
    color: #333;
}

.light-theme .form-description {
    color: #666;
}

.light-theme label {
    color: #555;
}

.light-theme input,
.light-theme textarea {
    background-color: #f5f5f5;
    border-color: #ddd;
    color: #333;
}

.light-theme input:focus,
.light-theme textarea:focus {
    border-color: #22863A;
}

/* Error states */
.form-input.error,
.form-textarea.error {
  border-color: #ff4646;
}

.error-message {
  color: #ff4646;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Success message */
.success-message {
  color: #8db472;
  text-align: left; /* Changed from center to left */
  padding: 1rem;
  border: #8db472;
  border-radius: 5px;
  background-color: rgba(75, 193, 122, 0.1);
  margin-bottom: 1rem;
}

/* Responsive styles */
@media (max-width: 768px) {
    .form-wrapper {
        margin: 10px;
        padding: 20px;
    }
    
    .main-content {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 20px;
    }
    
    button {
        width: 100%;
    }
}