/* form */
form{
    display: flex;
    flex-direction: column;
}
textarea,
input{
    width: auto;
    outline: none;
    border: 1px solid #d5dbd9;
    font-size: 15px;
    padding: 8px 10px; 
    border-radius: 5px;
    transition: all 0.3 ease;
    margin: 3px;
}
textarea{
    height: 150px;
}

textarea:focus,
input:focus{
    border: thin solid var(--primary-color);
}
label{
    
    color: rgb(165, 165, 165);
}
.btn{
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    margin-top: 10px;
    padding: 8px;
}
.btn:hover{
    background-color: white;
    color: var(--primary-color);
    border: thin solid var(--primary-color);
}
.btn-custom{
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    margin-top: 10px;
    padding: 8px;
}
.btn-custom:hover{
    background-color: var(--primary-color-darker);
    color: white;
    border: thin solid var(--primary-color-darker);
}