.settings {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.settings-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    margin: 0 10px;
}

.settings-name {
    text-align: left;
    font-size: 16px;
}

.settings-switch {
    text-align: right;
}


.settings-content-container {
    margin: 30px;
    width: 500px;
}

.settings-content {
    background-color: white;
    width: 100%;
    border-radius: 15px;
    padding: 20px;
    margin: 20px 0;
    box-sizing: border-box;
}

.submit-wrap button {
    width: 100%;
    border-radius: 10px;
    font-size: 16px;
    margin: 12px 0;
}

/* toggle switch */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #ffd700;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}