@charset "UTF-8";
/*!
*
* Template: webkit - Responsive Bootstrap 4 Admin Dashboard Template
* Author: iqonic.design
* Design and Developed by: iqonic.design
* NOTE: This file contains the styling for responsive Template.
*
*/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --iq-primary: #000000;
  --iq-secondary: #F35421;
  --iq-success: #50C6B4;
  --iq-info: #51BBFE;
  --iq-warning: #FFCF52;
  --iq-danger: #931F1D;
  --iq-light: #c7cbd3;
  --iq-dark: #01041b;
  --iq-orange: #F35421;
  --iq-purple: #4731b6;
  --iq-skyblue: #158df7;
  --iq-light-gray: #f4f5fa;
  --iq-white: #fff;
  --iq-primary: #5773FF;
  --iq-secondary: #F35421;
  --iq-success: #50C6B4;
  --iq-info: #51BBFE;
  --iq-warning: #FFCF52;
  --iq-danger: #931F1D;
  --iq-light: #c7cbd3;
  --iq-dark: #01041b;
  --iq-orange: #F35421;
  --iq-purple: #4731b6;
  --iq-skyblue: #158df7;
  --iq-light-gray: #f4f5fa;
  --iq-white: #fff; }

:root {
  --blue: #5773FF;
  --indigo: #6610f2;
  --purple: #4731b6;
  --pink: #e83e8c;
  --red: #931F1D;
  --orange: #F35421;
  --yellow: #FFCF52;
  --green: #008080;
  --teal: #20c997;
  --cyan: #51BBFE;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #01041b;
  --skyblue: #158df7;
  --primary: #5773FF;
  --secondary: #F35421;
  --success: #008080;
  --info: #51BBFE;
  --warning: #FFCF52;
  --danger: #931F1D;
  --light: #c7cbd3;
  --dark: #01041b;
  --orange: #F35421;
  --purple: #4731b6;
  --skyblue: #158df7;
  --light-gray: #f4f5fa;
  --white: #fff;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

*,
*::before,
*::after {
  box-sizing: border-box; }

  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
  }
  
  .container-full {
    height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .login-wrapper {
    flex: 1;
    display: flex;
    height: 100%;
  }
  
  /* LOGIN FORM STYLES */
  .login-panel {
    width: 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 30px;
  }
  
  .form-wrapper {
    width: 100%;
    max-width: 400px;
  }
  
  .login-panel .logo {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  
  .login-panel h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .login-panel a {
    color: #008080;
    margin-top: 10px;
    text-decoration: none;
  }
  
  .login-panel form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
  }

  .login-panel .pt {
    margin-top: 10px;
  }
  
  .login-panel input[type="email"] {
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }

  .login-panel input[type="text"] {
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  
  .error-msg {
    display: none;
    color: red;
    font-size: 0.85rem;
    margin-top: 5px;
  }

  .login-panel input[type="password"] {
    padding: 12px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
 
  
  button[type="submit"] {
    margin-top: 20px;
    padding: 12px;
    background-color: #000;
    color: white;
    border: none;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
  }
  
  button[type="submit"]:hover {
    background-color: #008080;
  }
  
  .help-link {
    margin-top: 20px;
    font-size: 0.9rem;
  }
  
  /* IMAGE PANEL */
  .branding-panel {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 0;
  }
  
  .overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #121213, #0c0c0c);
    opacity: 0.5;
    z-index: 1;
    
  }
  
  .overlay-text {
    position: absolute;
    bottom: 10px;
    z-index: 2;
    padding: 10px 20px;
    border-radius: 8px;
    text-align: center;
  }
  
  .overlay-text p {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #008080;
    margin-bottom: 80px;
    font-weight: 500;
  }
  
  
  
  /* COOKIE BAR */
  .cookie-bar {
    position: sticky;
    bottom: 0;
    width: 100%;
    background-color: #000;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    z-index: 999;
  }
  
  .cookie-bar a {
    color: #fff;
    text-decoration: underline;
  }
  
  .cookie-btn {
    background: none;
    border: 1px solid #fff;
    padding: 8px 16px;
    border-radius: 6px;
    margin-left: 10px;
    color: white;
    cursor: pointer;
  }
  
  .cookie-btn.primary {
    background-color: #fff;
    color: #008080;
    border: none;
  }


  .error-message {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background-color: #832c29; 
    color: #edf7f4;            
    border: 1px solid #832c29;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
  }

  .success-message {
    margin-top: 1rem;
    padding: 1rem 1.25rem;
    background-color: #d1fae5; 
    color: #008080;            
    border: 1px solid #10b981;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  /* RESPONSIVE VIEW */
  @media (max-width: 768px) {
    .login-wrapper {
      flex-direction: column;
    }
  
    .login-panel {
      width: 100%;
      justify-content: center;
      align-items: center;
      height: 100vh;
    }
  
    .branding-panel {
      display: none;
    }
  
    .cookie-bar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .cookie-bar div {
      margin-top: 10px;
    }
  }