@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Rajdhani:wght@600&family=Roboto:wght@300&display=swap');
*{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #D7DAE0;
    font-size: 1em;
}
a {
    color: #58AEFF;
}
a:hover {
    color: #E06C75;
}
h3 {
    font-family: 'Rajdhani', sans-serif;
    font-style: normal;
    font-size: 1.5em;
    line-height: 1.15;
    letter-spacing: -.02em;
    -webkit-font-smoothing: antialiased;
    color: #58AEFF;
}
section{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
}
section h3 {
    margin: auto;
    margin-top: 60px;
}
section p {
    margin: auto;
}
section h2{
    color: #f5f5f5;
    font-size: 2.5rem;
    margin: 2rem;
}
section form{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
}
form label{
    color: #f5f5f5;
    font-size: 17px;
    margin-bottom: 4px;
}
form input{
    padding: 15px;
    outline: none;
    border: 0;
    margin-bottom: 10px;
    font-size: 15px;
    transition: all 0.5s;
    border-radius: 10px;
    background-color: #21252B;
    border: 2px solid transparent;
}
form input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #D7DAE0;
    opacity: 0.3; /* Firefox */
}
form input:focus{
    background-color: #1D1F23;
    border: 2px solid #58AEFF;
}
form textarea{
    padding: 10px;
    outline: none;
    border: 0;
    font-size: 15px;
    margin-bottom: 10px;
    transition: all 0.5s;
    background-color: #21252B;
    border-radius: 10px;
    resize: none;
}
form textarea:focus{
    background: #1D1F23;
    border: 2px solid #58AEFF;
}
form textarea::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #D7DAE0;
    opacity: 0.3; /* Firefox */
}
form button{
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    background: #323842;
    color: #f5f5f5;
    border: none;
    transition: all 0.5s;
    margin-bottom: 20px;
    border-radius: 10px;
}
form button:hover{
    background: #58AEFF;  
}
form button:active{
    background: #E06C75;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #58AEFF;
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.5s;
    font-size: 0.8em;
    border: none;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #58AEFF transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}