/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

*{
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


html{
    height:100%;
    background-color: #595652;
}

.background {
    background-color: #36454F;
    position: relative;
}

.layer {
    background-color: #36454F;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.btn-usual {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 5px;
  border-radius: 10px;
  transition: 0.5s;
  color: #0e2954;
  background: #f2be22;
  white-space:nowrap
}

.btn-usual:hover  {
  background: #f86f03;
}

.btn-usual:focus  {
  background: #f86f03;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.container{
    height: 97vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
}

.form{
    position: absolute;
    max-width: 430px;
    width: 97%;
    padding:0px 30px 10px 30px;
    border: solid #000 2px;
    border-radius: 4px;
    background: #36454F;
}

.formp{
    position: absolute;
    width: 97%;
    padding:0px 30px 10px 30px;
    border: solid #000 2px;
    border-radius: 20px;
    background: #36454F;
}

::placeholder {
  color: white;
  opacity: 1;
}


form{
    margin-top: 0px;
}
.form .field{
    position: relative;
    height: 40px;
    width: 100%;
    margin-top: 10px;
    border-radius: 6px;
    background-color: #36454F;
}
.field input,
.field button{
    height: 100%;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
}
.field input{
    outline: none;
    padding: 0 15px;
    border: 3px solid #f2be22;
    background-color: #36454F;
    color: White;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-transition: "color 9999s ease-out, background-color 9999s ease-out, border 9999s ease-out";
    -webkit-transition-delay: 9999s;
}

.field select{
    height: 100%;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
    text-align: center;
    background-color: #36454F;
}

.field select{
    outline: none;
    padding: 0 5px;
    border: 1px solid #435a91;
}

.field option{
    height: 70%;
    width: 100%;
    border: none;
    font-size: 12px;
    font-weight: 400;
    border-radius: 6px;
    text-align: center;
}

.field option{
    outline: none;
    padding: 0 5px;
    border: 1px solid#435a91;
}

.field input:focus{
    border: 3px solid #f86f03;
}
.eye-icon{
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #FFF;
    cursor: pointer;
    padding: 5px;
}
.field button{
    color: #000;
    background-color: #f2be22;
    transition: all 0.3s ease;
    cursor: pointer;
}

.field button:hover{
    background-color: #f86f03;
    color: #fff;
}

.field button:focus{
    background-color: #f86f03;
    color: #fff;
}

.form-link{
    text-align: center;
    margin-top: 10px;
}
.form-link span
{
    font-size: 14px;
    font-weight: 400;
    color: #FFF;
}

.form-link span a
{
    font-size: 14px;
    font-weight: 400;
    color: #f86f03;
}

.form-link span a:focus,
.form-link span a:hover
{
    font-size: 14px;
    font-weight: 400;
    color: #f2be22;
}

.form-link a{
    font-size: 14px;
    font-weight: 400;
    color: #f86f03;
}

.form-link a:focus,
.form-link a:hover{
    font-size: 14px;
    font-weight: 400;
    color: #f2be22;
}


.form a{
    color: #f86f03;
    text-decoration: none;
}
.form-content a:hover{
    text-decoration: underline;
}
.line{
    position: relative;
    height: 1px;
    width: 100%;
    margin: 36px 0;
    background-color: #d4d4d4;
}
.line::before{
    content: 'Or';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    color: #8b8b8b;
    padding: 0 15px;
}
.media-options a{
    display: flex;
    align-items: center;
    justify-content: center;
}


@media screen and (max-width: 400px) {
    .form{
        padding: 20px 10px;
    }
    
}

.upload{
  width: 125px;
  height: 125px;
  position: relative;
  margin: auto;
}

.uploadp{
  width: auto;
  position: relative;
  margin: auto;
}

.upload img{
  min-width: 125px;
  min-height: 125px;
  border-radius: 50%;
  border: 4px solid #f86f03;
  max-height: 125px; max-width: 125px;
  border-color: #f86f03; 
}

.upload .round{
  position: absolute;
  bottom: 0;
  right: 0;
  background: #f2be22;
  width: 32px;
  height: 32px;
  line-height: 33px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
}

.upload .round input[type = "file"]{
  position: absolute;
  transform: scale(2);
  opacity: 0;
}

input[type=file]::-webkit-file-upload-button{
    cursor: pointer;
}
