/*===== GOOGLE FONT ========*/
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

/*===== GLOBAL STYLING ========*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Figtree", sans-serif;
}

:root {
  --blue: #00008b;
  --light-blue: #4fa4ff;
  --orange: #ff4f00;
  --red: #ff0031;
  --white: #ffffff;
  --gray: #918d8d;
  --light: #f8f8ff;
  --black: #000000;
  --green: #09c372;
}

.body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  position: relative;
}

#form{
    width: 40%;
    margin: 20vh auto 5vh auto;
    padding: 25px;
    background: linear-gradient(90deg, var(--blue) 10%, var(--light-blue) 100%);
    border-radius: 5px;
    font-size: 20px;
}
#form .profile-box{
    width: 80px;
}
#form .profile-box img{
    width: 80px;
    border: 4px solid var(--light);
    border-radius: 50%;
}

#form .form-text{
    padding-top: 30px;
}
#form h3{
    color: var(--white);
    text-align: center;
    padding-top: 0;
    font-weight: 300;
    text-transform: uppercase;
}
#form h1{
    color: var(--white);
    text-align: center;
    padding-top: 0;
}
#form button{
    padding: 12px;
    margin-top: 10px;
    width: 100%;
    background: linear-gradient(90deg, #ff4f00 0%, #ff0031 100%);
    border: none;
    border-radius: 5px;
    color: var(--light);
}

.input-control{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.input-control label{
    color: var(--light);
    font-size: 14px;
}
.input-control input{
    border: 2px solid var(--light);
    border-radius: 5px;
    display: block;
    font-size:16px ;
    padding: 12px;
    width: 100%;
}
.input-control input:focus{
    outline: 0;
}

.input-control.success input{
    border-color: var(--green);
}
.input-control.error input{
    border-color: var(--red);
}
.input-control .error{
    color: var(--red);
    font-size: 11px;
    height: 13px;
}