body,
html {
  -webkit-font-smoothing: antialiased;
  width: 100%;
  height: 100%;
}
html {
  -webkit-text-size-adjust: none;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input[type="submit"] {
  -webkit-appearance: none;
}
*,
:after,
:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  font-family: Inter, sans-serif;
  font-weight: 400;
  min-height: 100%;
  color: #031e23;
  background: #ecf0f4;
}
a {
  text-decoration: none;
  color: #555;
}
a:focus,
a:hover {
  outline: 0;
  text-decoration: none;
}
:focus {
  outline: 0;
}
img {
  border: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}
input,
select,
textarea {
  resize: none;
  font-family: Inter, sans-serif;
}
select,
textarea {
  outline: 0;
}
.slick-slide,
a,
button,
input {
  outline: 0 !important;
}
button::-moz-focus-inner {
  border: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
  font-weight: 700;
  color: #202342;
  font-family: Inter, sans-serif;
}
ol,
p,
ul {
  padding: 0;
}
ol,
ul {
  margin: 0;
  list-style: none;
}
p {
  margin: 0 0 15px;
}
.container {
  max-width: 1120px;
  width: 100%;
}

.auth-header{
    box-shadow: 0 0 8px #031e23;
}

.section {
  position: relative;
  /* padding: 120px 0; */
}

.welcome-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    
    
    /* filter: blur(13px); */
    z-index: -5;
}

.welcome-card {
    position: relative;
    width: 300px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(33, 20, 20, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
  
    
}
/* .blured-card{
    width: 500px;
    height: 400px;
    background-image: url('../images/service-provider-image.png');
    background-image: url('../images/back-side-card-image.jpeg') no-repeat center fixed;
    filter: blur(8px);
} */

.welcome-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.welcome-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 20px;
}

.welcome-card-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.welcome-card-button {
    /* background: rgba(255, 255, 255, 0.8); */
    color: #fff;
    background: none;
    padding: 5px 10px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.welcome-card-button:hover {
    background: #fff;
    color: #333;
    transform: scale(1.1);
}

.cta-buttons {
    margin-top: 40px;
}

.cta-button{
    background: #000000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    cursor: pointer;
    margin: 0 10px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background: #555;
    transform: scale(1.1);
    /* background-color: #fff; */
}

/* .welcome-card:nth-child(1) */
.welcome-card-1 {
    background-image: url('../images/service-provider-image.png');
    
}

/* .welcome-card:nth-child(2)  */
.welcome-card-2 {
    background-image: url('../images/card-2-image.jpeg');
    
}
.register-google-signup-btn,.register-google-login-btn{
  box-shadow: 0 3px 28px rgba(9, 9, 9, 0.15) !important;
  transition: background 0.3s ease, transform 0.3s ease;
}
.register-google-signup-btn:hover{
  transform: scale(1.1);
  box-shadow: 0 0 28px rgba(9, 9, 9, 0.15) !important;
}

.form-container {
  /* max-width: 800px; */
  margin: 2rem auto;
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.toast {
  background-color: #f8f9fa; /* Default background */
  border: none;
}

.toast.bg-success {
  background-color: #049c28 !important; /* Green for success */
  color: #fff;
}

.toast.bg-danger {
  background-color: #dd2e3d !important; /* Red for error */
  color: #fff;
}
.toast.bg-danger button{
  color: #fff !important;
} 
.toast.bg-success button{
  color: #fff !important;
}


aside {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 250px; /* Adjust based on your sidebar width */
    overflow-y: auto;
    z-index: 1000;
    background-color: #fff;
    transition: all 0.3s ease;
}

nav {
    position: relative;
    height: 100%;
}

main {
    position: relative;
    margin-left: 250px; /* Should match sidebar width */
    min-height: calc(100vh - 60px); /* Adjust based on header height */
    padding-bottom: 60px; /* Adjust based on footer height */
}

#sidebarshow {
  display: none;
}



.b-example-divider {
  width: 100%;
  height: 3rem;
  background-color: rgba(0, 0, 0, .1);
  border: solid rgba(0, 0, 0, .15);
  border-width: 1px 0;
  box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}

.b-example-vr {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
}

.bi {
  vertical-align: -.125em;
  fill: currentColor;
}


@media screen and (max-width: 992px) {
    aside {
        transform: translateX(-100%);
    }
    
    aside.show {
        transform: translateX(0);
    }
    
    main {
        margin-left: 0;
    }
    
    .footer {
        left: 0;
    }
    
    #sidebarshow {
        display: inline;
    }

    #sidebartoggle {
        display: none;
    }
}

/* Footer Styles */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1rem 0;
    position: relative;
    width: calc(100% - 250px - 1rem);
    bottom: 0;
    left: calc(250px + 1rem); /* Should match sidebar width */
    right: 0;
}

.footer p {
    font-size: 0.875rem;
    margin: 0;
}

.footer .text-end {
    color: rgba(255, 255, 255, 0.7);
}

/* Font size utility classes */
.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}