﻿/*button*/
.csm-btn {
    border-radius: 10px 10px;
    height: 35px;
    min-width: 200px;
    color: white;
    background-color: #416c89;
    font-weight:500;
    border: 2px solid #28475c;
}

    .csm-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.45);
    }

/*input*/
.csm-control {
    display: block;
    width: 200px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    border: 2px solid #28475c;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

    .csm-control:focus {
        border-color: #86b7fe;
        outline: 0;
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

/* required*/
.required::after {
    content: " *";
    color: red;
    white-space: nowrap;
}

.group-row label {
    white-space: nowrap;
}