input, input[type="text"], input[type="tel"]{
    padding:10px;
    color:#000;
    border:1px solid #D7D7D7;
    border-radius:5px;
}
input[type="text"], input[type="tel"], input[type="password"]{
    margin:5px 0;
}
input[type="text"]::placeholder, input[type="tel"]::placeholder{
    color:#505050;
    font-family:inter;
}
select {
    padding: 15px 10px;
    border: 1px solid #D7D7D7;
    font-family: 'Inter';
    color: #313131;
    -webkit-appearance: none;
}
select{
    background-image:url(../images/drop-down.svg);
    background-repeat:no-repeat;
    background-position:calc(100% - 10px) center;
}
label {
    font-weight: bold;
    font-size: 14px;
    font-family:inter;
}
button, .btn{
    font-family:inter;
    padding:10px 15px;
    border-radius:5px;
    color:#02ABA1;
    font-weight:500;
    background:#F4FBFB;
    border:1px solid #02ABA1;
    font-size:13px;
    cursor:pointer;
    text-decoration: none;
}
.btn-full.disabled{
    background:#AAAAAA;
    border:none;
    color:#fff;
    border:1px solid #AAAAAA;
    cursor:default;
}
.btn-full{
    background:#02ABA1;
    color:#fff;
}
textarea.coding {
    resize: none;
    padding: 10px;
    font-family: inter;
    line-height: 1.4em;
    color: #505050;
    border:1px solid #D7D7D7;
    border-radius:5px;
}

/* Notifications */
.notification.general {
    padding: 15px;
    background: #f4fbfb;
    border: 1px solid #02aba3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    row-gap: 10px;
    border-radius: 5px;
}
.notification.general button{
    background:#fff;
}
.notification.general .title::before{
    content:"";
    height:15px;
    width:15px;
    background-image:url(../images/info-icon-black.svg);
    background-repeat: no-repeat;
    background-position:center center;
    display:block;
}
.notification .title{
    display:flex;
    column-gap:5px;
    align-items:center;
}