*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.logo-text{
    font-size: 30px;
}


@media screen and (max-width:700px) {
    
    .logo-text{
        font-size: 13px;
    }

}



/* from css  */
.custom-form {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    font-family: "Nunito", sans-serif; 
}

.custom-form label {
    font-weight: 600;
}

.custom-form .form-control {
    border-radius: 8px;
}

.custom-form .input-group-text {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
}

.custom-form .btn-primary {
    border-radius: 8px;
}

::placeholder{
    font-family: "Nunito", sans-serif; 
}



/* end form css  */