/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 11 2026 | 07:08:49 */
.derma-form{
    width:100%;
}

.derma-form .form-row{
    display:flex;
    gap:20px;
    margin-bottom:20px;
}

.derma-form .form-group{
    flex:1;
}

.derma-form .full-width{
    width:100%;
    margin-bottom:20px;
}

.derma-form .form-control{
    width:100%;
/*     height:62px; */
    padding:10px 22px!important;
    border:1px solid rgba(255,255,255,.25);
    border-radius:12px!important;
    background:rgba(255,255,255,.08);
    color:#fff;
    font-size:18px;
    box-sizing:border-box;
}

.derma-form input::placeholder{
    color:rgba(255,255,255,.7);
}

.derma-form select{
    appearance:none;
    -webkit-appearance:none;
    -moz-appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 20px center;
    padding-right:50px;
    cursor:pointer;
}

.derma-form select option{
    color:#333;
}

.derma-form .consult-btn{
    width:100%;
    height:62px;
    border:none;
    border-radius:16px;
    background:#fff;
    color:#a12ca5;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.derma-form .consult-btn:hover{
    transform:translateY(-2px);
}

@media(max-width:767px){

    .derma-form .form-row{
        flex-direction:column;
        gap:15px;
        margin-bottom:15px;
    }

    .derma-form .full-width{
        margin-bottom:15px;
    }

    .derma-form .form-control,
    .derma-form .consult-btn{
        height:56px;
        font-size:16px;
    }
}

