﻿/*    Forms CSS start*/
.form-title h1 {
    font-weight: 700;
    color: #004d8f;
    font-size: 30px;
    margin-bottom: 20px;
}

.form-sub-header {
    background-color: #ebf6ff;
    text-align: center;
    padding: 10px;
    margin-bottom: 15px;
}

    .form-sub-header h5 {
        margin-bottom: 0px;
        font-size: 20px;
        color: #015cab;
        font-weight: 600;
    }

.form-submit {
    margin-top: 25px;
    text-align: center;
}

/* Toaster start */
.toast-container {
    position: fixed;
    top: 10px;
    right: 3px;
    z-index: 1000;
}

/* Base Toast Style */
.toast {
    align-items: center;
    justify-content: space-between;
    min-width: 250px;
    max-width: 400px;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    font-family: Arial, sans-serif;
    font-size: 14px;
    position: relative;
    margin-bottom: 10px;
    margin-top: 1px;
    z-index: 1000;
}

/* Success Toast */
.toast-success {
    background: #afdeaf;
    /* border-left: 5px solid #1e7e34; */
    color: #000;
    display: flex;
    font-size: 16px;
}

/* Error Toast */
.toast-error {
  /*  background: linear-gradient(to right, #dc3545, #c82333);*/
    /*border-left: 5px solid #a71d2a;*/
}

.toast-error {
    background: #ffc4c4;
    color: #000000;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

/* Warning Toast */
.toast-warning {
    background: linear-gradient(to right, #ffc107, #e0a800);
    border-left: 5px solid #d39e00;
    color: #333;
}

/* Show class for animation */
.toast.show {
    opacity: 1;
    transform: translateY(0);
}

/* Close Button */
.toast-close {
    margin-left: 10px;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: #000;
    opacity: 0.7;
}

    .toast-close:hover {
        opacity: 1;
    }

/* Icon Styling */
.toast-icon {
    margin-right: 10px;
    font-size: 18px;
}
.txt-multi-select {
    display: none;
}

.form-box {
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #e0dfdf;
}

.form-box label.h6 {
    /*font-weight: 800;*/
}

.form-box input::placeholder {
    opacity: 0.5;
    color: #6c757d;
}

.quotation-block {
    background: #f0f3f6;
    padding: 10px;
    margin: 20px 0px;
    border-radius: 10px;
    font-style: italic;
}