@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');
body{
    background-color:#fff;
    font-family: 'Poppins','sans-serif';
    animation: body ease 3s;
}
@keyframes body{
    0%{opacity: 0;}
    100%{opacity: 1;}
}
/* Hide all tab content by default */
#tab1 {
    display: none;
  }
  
  /* Style the tab buttons */
  .tab button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
  }
  
  /* Style the active tab button */
  .tab button.active {
    background-color: rgb(17, 0, 255);
    color: white;
  }
  
  /* Style the tab content */
  .tabcontent {
    padding: 20px;
  }

  .btn-primary{
    width: 100%;
    background-color: #0064D3;
    border: none;
  }
  .btn-primary:hover{
    background-color: yellow;
    color: black;
  }
  
a{
    text-decoration: none;
}
a:hover{
  color: black;
}
.invalid-feedback{
  position: absolute;
}
#text{
    color: rgb(158, 158, 158);
    font-size: 18px;
}
#text2{
  color: rgb(185, 185, 185);
  font-size: 14px;
}
#img-left{
    /* margin-left: -10px; */
    overflow: hidden;
}
#pilih-kelas{
    font-size: 16px;
}
#password-login{
  width: 95%;
}
#email-login{
  width: 95%;
}
#btn-login{
  margin-top: 60px;
  width: 95%;
}
#show-password{
  margin-left: 30px;
}

.otp-field {
  display: flex;
}
.otp-field input {
  width: 50px;
  font-size: 32px;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  margin: 2px;
  border: 2px solid #a8a8a8;
  font-weight: bold;
  outline: none;
  color: black;
  transition: all 0.1s;
}
.otp-field input:focus {
  border: 2px solid #a527ff;
  box-shadow: 0 0 2px 2px #a527ff6a;
}
.disabled {
  opacity: 0.5;
}

.space {
  margin-right: 1rem !important;
}
#right{
  background-color: #0064D3;
}
#tittleAuth{
  color: #0064D3;
}


.radio-section {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100vh;
}
.radio-item [type="radio"] {
	display: none;
}
.radio-item + .radio-item {
	margin-top: 15px;
}
.radio-item label {
	display: block;
	padding: 20px 60px;
	border: 2px solid rgb(211, 211, 211);
	border-radius: 8px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 400;
	min-width: 250px;
	white-space: nowrap;
	position: relative;
	transition: 0.4s ease-in-out 0s;
}
.radio-item label:after,
.radio-item label:before {
	content: "";
	position: absolute;
	border-radius: 50%;
}
.radio-item label:after {
	height: 19px;
	width: 19px;
	border: 2px solid #524eee;
	left: 19px;
	top: calc(50% - 12px);
}
.radio-item label:before {
	background: #524eee;
	height: 20px;
	width: 20px;
	left: 19px;
	top: calc(50% - 12px);
	transform: scale(5);
	opacity: 0;
	visibility: hidden;
	transition: 0.4s ease-in-out 0s;
}
.radio-item [type="radio"]:checked ~ label {
	border-color: #524eee;
}
.radio-item [type="radio"]:checked ~ label::before {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

@media screen and (max-width : 500px) {
  #img-left{
    display: none;
  }
}
