:root {
    --red: #ff4655;
    --red_15: rgba(255, 70, 86, 0.15);
    --red_hover: #fa848e;
    --white: #ffffff;
    --gray: gray;
    --light_gray: lightgray;
    --light_green: lightgreen;
    --green: green;
}
body{
    margin: 0;
}
h1, h2{
    font-family: sans-serif;
}
header{
    height: 160px;
    width: 100%;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-div{
    margin-left: 10vw;
    height: 100%;
    display: flex;
}
.logo-div:hover{
    cursor: pointer;
}
.logo{
    margin-top: 30px;
    height: 100px;
}
.nav{
    width: 100%;
    display: flex;
    column-gap: 20px;
    margin-left: 50px;
}
.nav li{
    list-style: none;
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 600;
}
.nav li:hover{
    cursor: pointer;
    color: var(--red);
}
main{
    margin-bottom: 100px;
    margin-left: 10vw;
    width: 80vw;
}
.logo_text{
    font-family: sans-serif;
    font-weight: 700;
    color: var(--red);
    font-size: 50px;
    margin: 45px 0 0 20px;
}
.my-profile-div{
    display: flex;
    align-items: center;
    padding: 0 10px 0 40px;
    border-radius: 40px;
    margin-right: 10vw;
}
.my-profile-icon{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 60px;
    border-radius: 30px;
    background-color: var(--red);
    font-family: "Roboto", sans-serif;
    color: var(--white);
    font-size: 25px;
    font-weight: 600;
    margin-left: 20px;
}
.my-profile-name{
    text-align: end;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    text-wrap: nowrap;
}
.my-profile-div:hover{
    background-color: rgb(240, 240, 240);
    cursor: pointer;
}
input[type=text], input[type=email], input[type=tel], input[type=password], select, input[type=date], input[type=number], input[type=file], input[type=url]{
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    box-sizing: border-box;
    outline: none;
    width: 300px;
    padding: 5px;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    font-size: 16px;
    margin: 0 20px 0 0;
}
input[type=checkbox]{
    height: 20px;
    width: 20px;
    margin: 20px 20px 0 0;
}
textarea{
    border: 2px solid #c0c0c0;
    border-radius: 5px;
    box-sizing: border-box;
    outline: none;
    width: 620px;
    padding: 5px;
    -webkit-transition: 0.1s;
    transition: 0.1s;
    font-size: 16px;
    margin: 0 20px 0 0;
}
input[type=text]:focus, input[type=email]:focus, input[type=tel]:focus, input[type=password]:focus, select:focus, input[type=date]:focus, input[type=number]:focus, input[type=file]:focus, textarea:focus, input[type=url]:focus{
    border: var(--red) 2px solid;
}
.input-label-div{
    display: flex;
    flex-direction: column-reverse;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}
.input-label{
    margin: 20px 0 10px 0;
}
input:required + label::after, select:required + label::after{
    content: '*';
}
.button_div{
    width: 300px;
    display: flex;
    justify-content: space-between;
}
.submit-button{
    width: min-content;
    padding: 8px;
    background-color: var(--red);
    border: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    margin: 20px 0;
}
.submit-button:hover, .sso-button:hover{
    cursor: pointer;
}
.sso-button{
    width: 70px;
    padding: 8px;
    background-color: var(--gray);
    border: none;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    margin: 20px 0;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}