@font-face {
    font-family: 'Inter';
    src: url("../font/Inter_18pt-Regular.ttf");
    font-weight: 400;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter';
}
body{
    background-image: url("../images/black_gradient_background.svg");
    background-size: cover;       
    background-repeat: no-repeat; 
    background-position: center; 
    background-attachment: fixed; 
    min-height:100vh;
    box-sizing: border-box;
    display:flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.logo_sec{
    position: absolute;
    top: 30px;
    left: 30px;
}
.logo{
    width: 120px;
    height: auto;
}
.form_sec{
    display: flex;
    justify-content: center;
    align-items: center;
}
.card{
    max-width: 30vw;
    background: white;
    padding-block: 40px;
    padding-inline: 25px;
    border-radius: 20px !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.card-title{
    font-size: 30px;
    font-weight: bold;
}
.card-subtitle{
    font-size: 12px;
}
.row{
    margin-bottom: 8px;
}
label{
    font-size: 12px;
    font-weight:500;
}
input[type=text],input[type=email], .country{
    font-size: 12px;
}
input[type=text]::placeholder,input[type=email]::placeholder, .country::placeholder{
    color: #aaa9a9;
}
select:required:invalid {
    color: #aaa9a9;
}

select option:not(:required) {
    color: black;
}
/* input[type=text],
input[type=checkbox]{
    background-color: #f8f8f8;
} */
 input[type=checkbox]{
    cursor: pointer;
 }
 .form-check-input:checked{
    background-color: #000000;
    color: #fff;
    border-color: #000000;
 }
 .form-check-input:focus{
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.25);
    border-color: #000000;
 }
.form-check{
    margin-top: 10px;
}
.form-check-label{
    font-weight: 500;
}
a:link{
    text-decoration: none;
}
.btn-create{
    margin-block: 10px;
    font-size: 12px;
    color: #fff;
    background-color: #272727;
}
.btn-create:hover{
    color: #fff;
    background-color: #000000;
}
.text_sec{
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    margin-block: 10px;
}
.error-message{
  display: none;
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  text-align: left;
  background: #FFCDD2;
  /* border: solid #e60017; */
  border-width: 0 0 0 6px;
  color: #73000c;
  padding: 7px;
  border-radius: 6px;

}