/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.rm-form {
  width: 100%;
}

.rm-rendered-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 20px;
  column-gap: 20px;
}

.rm-wide-group {
  grid-column: span 2;
}

.rm-form-group {
  display: flex;
  align-items: center;
}

.rm-form-select {
  display: flex;
  width: 100%;
  height: 35px;
  margin-left: 10px;
  padding-left: 5px;
  border-radius: 3px;
}

.rm-form-select:hover {
  border: 2px solid #2e9e5e;
  padding-left: 4px;
}

.rm-form-control {
  width: 100%;
  height: 35px;
  padding-left: 10px !important;
  border-radius: 3px;
}

.rm-form-control:hover {
  border: 2px solid #2e9e5e;
  padding-left: 9px !important;
}

.rm-submit-button {
  padding: 6px;
  border-radius: 5px;
  cursor: pointer;
  width: 150px;
  height: 50px;
  background: white;
  border: 2px solid #2e9e5e;
  font-weight: bold;
}

.rm-submit-button:hover {
  border: 2px solid #2e9e5e;
  cursor: pointer;
  background-color: #2e9e5e;
  color: white;
}

.rm-submit-image {
  width: 90px;
  border-radius: 8px;
}

.rm-result {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.5rem;
}

/* 
.rm-result-message {
}
*/

.rm-result-error {
  color: red;
  font-weight: 600;
}

.rm-result-success {
  color: #2e9e5e;
  font-weight: 600;
}
