* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
body {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

html {
    height: 100%;
  }

body {
    height: 100%;
  }

.my-container {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center; 
    margin: auto;
    height: 100%;
}

.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start; 
    gap: 40px;
    padding: 35px 20px;
    font-family: "Helvetica-Medium","Arial", sans-serif;
    font-size: 14px;
    font-weight: 600;
}

.profile-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start; 
    gap: 15px;
}

.profile-form__label {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start; 
    gap: 5px;
    width: 100%
}

.profile-form__radio-list{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start; 
    gap: 5px;
    border: 1px solid black;
    border-radius: 5px;
    padding: 5px 5px;
    margin: 10px auto;
}
  
.profile-form__radio-list-title {
  align-self: start;
}

.profile-form__textfield {
  border: none;
  border-bottom: 1px solid black;
  padding: 5px 10px;
  width: 100%;
  appearance: none;
}

.profile-form__textfield:focus {
  outline-color: red;
}

.profile-form__label-link {
  color: #337ab7;
  text-decoration: none;
  font-weight: bold;
}

.profile-form-button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 65%;
  height: 3.5em;
  gap: 5px;
  background-color: white;
  border: 1px solid black;
  border-radius: 5px;
  font-weight: inherit;
  color: black;
}

.main-title {
  font-family: "Helvetica-Bold", "Arial", sans-serif;
  font-size: 38px;
}

.profile-form__radio-text {
  font-weight: normal;
}

.confirmDialog {
  border: 1px solid black;
  border-radius: 5px;
  padding: 65px 30px;
}

.confirmDialog__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.confirmDialog__body-button {
  padding: 15px 60px;
  background-color: transparent;
  border: 1px solid black;
  border-radius: 5px;
  font-weight: inherit;
  color: black;
}

#dialog-headingOk,
#dialog-headingEr {
  text-align: center;
}

.is-invalid {
border-color: red;
}

.is-valid {
  border-color: green;
}

.is-invalid_checkbox {
  outline: 3px groove red;
  }
  
.is-valid_checkbox {
  outline-color: transparent;
}

.cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;  
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}
@keyframes sp-anime {
  100% { 
    transform: rotate(360deg); 
  }
}

.cv-spinner-send {
  display: none;
}

.spinner-send {
  display: block;
  width: 20px;
  height: 20px;
  border: 4px #ddd solid;
  border-top: 4px #2e93e6 solid;
  border-radius: 50%;
  animation: sp-send-anime 0.8s infinite linear;
}
@keyframes sp-send-anime {
  100% { 
    transform: rotate(360deg); 
  }
}

.is-hide {
  display: none;
}

#confirmDialogOkButton {
  background-color: transparent;
  color:black;
  padding: 15px 60px;
  border: 1px solid black;
  font-weight: inherit;
}

#confirmDialogErButton {
  background-color: transparent;
  color:black;
  padding: 15px 60px;
  border: 1px solid black;
  font-weight: inherit;
}

.modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.profile-form-button-text {
  margin-bottom: 0;
}

.new-main {
  margin: auto;
  text-align: center;
} 




