@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root{
    /* --color-primary : #7380ec; */
    --color-primary:#22c55e ;
    --color-bg-primary:#e7f7ef;
    --color-danger : #ff7782;
    --color-success : #41f1b6;
    --color-warning : #ffbb55;
    --color-white : #fff;
    --color-info-dark : #7d8da1;
    --color-info-light : #dce1eb;
    --color-dark : #363949;
    --color-light : rgba(132, 139, 200, 0.18);
    --color-primary-variant:#22c55e;
    /* --color-primary-variant : #111e88; */
    --color-danger-variant: #dc3b5d;
    --color-dark-variant : #677483;
    --color-purple :#845EBC;
    --color-background: #f6f6f9;
    /* --color-background:#f6f9fd; */
    --color-secondary:#E7F8FC;
    --card-border-radius : 2rem;
    --border-radius-1 : 0.4rem;
    --border-radius-2 : 0.8rem;
    --border-radius-3 : 1.2rem;
    --border-circle : 50%;
    --card-padding : 1rem;
    --padding-1 : 1.2rem;
    --box-shadow : 0 0rem 3rem var(--color-light);


    --clr-white: rgb(255, 255, 255);
    --clr-black: rgb(0, 0, 0);
    --clr-light: rgb(245, 248, 255);
    --clr-light-gray: rgb(196, 195, 196);
    --clr-blue: rgb(63, 134, 255);
    --clr-light-blue: rgb(171, 202, 255);
}

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    outline: 0;
    appearance: none;
    border: 0;
    text-decoration: none !important;
    list-style: none !important;
}
@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

html{
    font-size: 14px;
}

body{
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    font-family: "Inter", sans-serif !important;
    font-optical-sizing: auto;   
    font-style: normal;
    font-variation-settings: "slnt" 0;
    font-size: 0.88rem;
    background: white !important;
    /* background: var(--color-background) !important; */
    user-select: none;
    overflow-x: hidden;
    color: var(--color-dark);
}
body {
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
     scrollbar-width: none;  /* Firefox */
}
body::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}


.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, .register-apple-signup-btn, .register-apple-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, .register-google-login-btn:hover, .register-apple-signup-btn:hover, .register-apple-login-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: #d4edda !important; /* Green for success */
  color: #049c28;
}

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

a{
    text-decoration: none;
    color: var(--color-white);
}


