:root {
  --bs-primary: #167263;
  --bs-secondary: #7987a1;
  --bs-success: #05a34a;
  --bs-info: #66d1d1;
  --bs-warning: #fbbc06;
  --bs-danger: #ff3366;
  --bs-light: #e9ecef;
  --bs-dark: #060c17;
  --bs-primary-rgb: 0, 128, 118;
  --bs-secondary-rgb: 121, 135, 161;
  --bs-success-rgb: 5, 163, 74;
  --bs-info-rgb: 102, 209, 209;
  --bs-warning-rgb: 251, 188, 6;
  --bs-danger-rgb: 255, 51, 102;
  --bs-light-rgb: 233, 236, 239;
  --bs-dark-rgb: 6, 12, 23;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    font-family: 'Avenir', sans-serif;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7f8fa;
}
.container {
    display: flex;
    flex-direction: row;
    width: 100vw; /* Full viewport width */
    height: 100%;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.left-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #167263, #1ba97d);
    color: #fff;
    padding: 40px;
}
.left-panel .nav-logo {
    margin-top: 20px;
    margin-bottom: 40px;
}
.left-panel .nav-logo img {
    height: 50px;
}
.left-panel-content {
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}
.left-panel-content h3 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.left-panel-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}
.left-panel img.bottom-shape-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}
.right-panel {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
.right-panel h1 {
    font-size: 34px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}
.form-group {
    position: relative;
    margin-bottom: 20px;
}
.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
    color: #555;
}
.form-group input {
    width: 100%;
    padding: 12px 40px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
}
.form-group .icon {
    position: absolute;
    top: 69%;
    left: 12px;
    transform: translateY(-50%);
    color: #167263;
    font-size: 16px;
}
.form-group input:focus {
    border-color: #167263;
    box-shadow: 0 0 5px rgba(22, 114, 99, 0.3);
}
.btn {
    width: 100%;
    padding: 14px;
    background: #167263;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.btn:hover {
    background: #135c53;
    transform: translateY(-2px);
}
.text-center {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}
.text-center a {
    color: #167263;
    text-decoration: none;
}
.text-center a:hover {
    text-decoration: underline;
}
.alert{
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius:0.25rem;
    font-size: 15px;
    margin-bottom: 10px;
}
.alert-success {
    background-color: rgba(5, 163, 74, 0.1);
    color: #048a3f;
    border-color: rgba(5, 163, 74, 0.2);
    border:1px solid #b4e3c9;
}
.alert-danger {
    background-color: rgba(255, 51, 102, 0.1);
    color: #ff1a53;
    border-color: rgba(255, 51, 102, 0.2);
    border:1px solid #ffc2d1;
}
.text-white{
    color: #FFFFFF;  
}
.toast-card{
    width: 350px;
    display: flex;
    color: #fff;
}
.toast-body {
    padding: 0.75rem;
    word-wrap: break-word;
    display:flex;
}
.toast-body svg{
    height: 20px;
    margin-right: 5px;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
    .left-panel {
        flex: none;
        height: 40%;
    }
    .right-panel {
        flex: none;
        height: 60%;
    }
}
