.setName{text-align: center;}
.settingContainer{
    min-height: 70vh;
    margin-top: 10px;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}
.deleteAcc{
    margin: 10px;
    display: block;
    width: 100%;
}
.settingrow,.settingcolumn1,.settingcolumn2 {
  box-sizing: border-box;
}
.input{
    border: 1px solid #DFE4E4;
    border-radius: 5px;
    width:100%;
    max-width: 200px;
    height: 28px;
    margin-bottom: 1%;
    font-size: small;
}
.proceed{
    cursor: pointer;
    display: inline-block;
    padding: 0.3em 1.2em;
    margin:0 0.3em 0.3em 0; 
    border-radius: 2em;
    box-sizing: border-box;
    text-decoration: none; 
    font-family:'Roboto',sans-serif ;
    font-weight: 300;
    color: #FFFFFF;
    background-color: #4eb5f1;
    text-align: center;
    transition:all 0.2s;
    }
    .proceed:hover{
      background-color:#4095c6;
    }
    .deleteAccount {
        background: none!important;
        border: none;
        padding: 0!important;
        /*optional*/
        font-family: arial, sans-serif;
        /*input has OS specific font-family*/
        color: #069;
        text-decoration: underline;
        cursor: pointer;
      }
/* Create two equal columns that floats next to each other */
.settingcolumn1 {
  float: left;
  width: 30%;
  padding: 10px;
   height: 150px; /*Should be removed. Only for demonstration */
}
.settingcolumn2 {
    float: left;
    width: 70%;
    padding: 10px;
     height: 150px; /*Should be removed. Only for demonstration */
  }

/* Clear floats after the columns */
.settingrow:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .settingContainer{
        width: 100%;   
    }
}
