/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Roboto:wght@400;500;700&display=swap");

/* Root Variables */
:root {
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Merriweather", serif;

  --color-primary: #1c2f59;
  --color-secondary: #6c757d;
  --color-success: #28a745;
  --color-danger: #dc3545;
  --color-warning: #ffc107;
  --color-info: #17a2b8;
  --color-light: #f8f9fa;
  --color-dark: #343a40;
  --color-btn: #5678aa ;

  /* Custom Button Colors */
  --confirm: #28a745; /* Replace with your desired color */
  --cancel: #dc3545; /* Replace with your desired color */
}

body {
  background-color: #fff;
  margin: 0 !important;
  padding: 0 !important;
  font-family: var(--font-primary);
  color: var(--color-dark);
}

/*** Button ***/

/* Navbar Styling */
/* Main Sidebar Styles */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap");

::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

body {
  font-family: var(--font-primary);
}

/* Sidebar Styling */

/* Scrollbar customization for WebKit browsers */

/* Responsive adjustments */

/* Dropdown functionality */

/* Mobile Button Styling */

/*** Header ***/
@media (min-width: 992px) {
  .header {
    margin-top: -120px;
  }
}

/*** Icon ***/
.icon {
  width: 25px; /* Adjust the size as needed */
  height: 25px; /* Adjust the size as needed */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff !important;
  border-radius: 50%;
  border: 1px dashed var(--color-primary) !important;
}

/*** About ***/

/*** Category ***/

/*** Property List ***/

/*** Team ***/

/*** Testimonial ***/

/*** Footer ***/

.header {
  margin-top: 30px !important;
}

input {
  padding: 10px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button {
  padding: 12px;
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: var(--color-dark);
}

/* Custom DataTable column spacing */


/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
.container {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1c2f59;
    column-gap: 30px;
}
.logo {
    text-align: center; /* Center the logo */
    margin-bottom: 20px; /* Add some space below the logo */
}

.logo img {
    max-width: 25%; /* Make sure the logo doesn't overflow */
    height: auto; /* Maintain the aspect ratio of the image */
    border-radius: 5%;
}
.form {
    position: absolute;
    max-width: 430px;
    width: 100%;
    padding: 30px;
    border-radius: 6px;
    background: #FFF;
}
.form.signup {
    opacity: 0;
    pointer-events: none;
}
.forms.show-signup .form.signup {
    opacity: 1;
    pointer-events: auto;
}
.forms.show-signup .form.login {
    opacity: 0;
    pointer-events: none;
}
header {
    font-size: 28px;
    font-weight: 600;
    color: #232836;
    text-align: center;
}
form {
    margin-top: 30px;
}
.form .field {
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 20px;
    border-radius: 6px;
}
.field input,
.field button {
    height: 100%;
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    border-radius: 6px;
}
.field input {
    outline: none;
    padding: 0 15px;
    border: 1px solid #CACACA;
}
.field input:focus {
    border-bottom-width: 2px;
}
.eye-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 18px;
    color: #8b8b8b;
    cursor: pointer;
    padding: 5px;
}
.field button {
    color: #fff;
    background-color: #0171d3;
    transition: all 0.3s ease;
    cursor: pointer;
}
.field button:hover {
    background-color: #016dcb;
}
.form-tag {
    text-align: left;
    margin-top: 5px;
}
.form-tag span {
    font-size: 12px;
    font-weight: 300;
    color:#232836;
}
.form-link {
    text-align: center;
    margin-top: 10px;
}
.form-link span,
.form-link a {
    font-size: 14px;
    font-weight: 400;
    color: #232836;
}
.form a {
    color: #0171d3;
    text-decoration: none;
}
.form-content a:hover {
    text-decoration: underline;
}
.line {
    position: relative;
    height: 1px;
    width: 100%;
    margin: 36px 0;
    background-color: #d4d4d4;
}
.line::before {
    content: 'Or';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #FFF;
    color: #8b8b8b;
    padding: 0 15px;
}
.media-options a {
    display: flex;
    align-items: center;
    justify-content: center;
}
a.facebook {
    color: #fff;
    background-color: #4267b2;
}
a.facebook .facebook-icon {
    height: 28px;
    width: 28px;
    color: #0171d3;
    font-size: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.facebook-icon,
img.google-img {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
img.google-img {
    height: 20px;
    width: 20px;
    object-fit: cover;
}
a.google {
    border: 1px solid #CACACA;
}
a.google span {
    font-weight: 500;
    opacity: 0.6;
    color: #232836;
}

@media screen and (max-width: 400px) {
    .form {
        padding: 20px 10px;
    }
}