﻿.btn {
    height: 50px;
    margin: 0;
    padding: 0 20px;
    vertical-align: middle;
    /*background: #de615e;*/
    background: #D53D39;
    border: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    color: #fff;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    text-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
}
input[type="password"] {
    height: 45px;
    margin: 0;
    padding: 0 20px;
    margin-bottom: 10px;
    vertical-align: middle;
    background: #fff;
    border: 3px solid #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 50px;
    /*color: #888;*/
    color: #595959;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.field-validation-error {
    color: rgb(222, 97, 97);
}

.input-validation-error {
    border: 3px solid rgba(222,97,97,.75) !important;
}

.field-validation-valid {
    display: none;
    visibility: hidden;
}

.validation-summary-valid {
    display: none;
    visibility: hidden;
}

.hidden {
    display: none !important;
}

.vl {
    border-left: 6px solid green;
    height: 200px;
}
.captcha-container {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 100%;
    max-width: 450px;
    box-sizing: border-box;
}

.captcha-image-wrapper {
    margin-bottom: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    display: inline-block; /* To allow text-align to center it */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

#captchaImage {
    display: block; /* Remove extra space below image */
    width: 200px;
    height: 50px;
}

.refresh-button {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 0.9em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-left: 15px;
    vertical-align: top; /* Align with image-wrapper */
}

    .refresh-button:hover {
        background-color: #0056b3;
        transform: translateY(-1px);
    }


/* Basic styling to make jQuery UI Datepicker blend in better */
.ui-datepicker {
    font-family: 'Inter', sans-serif;
    font-size: 0.9em;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden; /* Ensures rounded corners */
    width: 300px;
}

.ui-widget-header {
    background: #007bff;
    color: white;
    border: none;
    border-radius: 8px 8px 0 0;
}

.ui-state-highlight, .ui-state-active {
    background: #28a745 !important;
    color: white !important;
    border-radius: 4px;
}

.ui-datepicker-calendar td a {
    border-radius: 4px; /* Round calendar day cells */
}