@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --bg-color: #D9D9D9;
    --primary: #2cace2;
}

* {
    padding: 0;
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
}

h1,
h2,
h3,
p,
h4,
h5,
h6,
span {
    font-family: "Source Sans 3", sans-serif;
}

ul > li {
    list-style-type: none;
}
a {
    text-decoration: none;
}
hr {
    border: 1px solid var(--bg-color);
}
/* width */
::-webkit-scrollbar {
    width: 10px;
    background: transparent;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #d9d9d9;
    border-radius: 4px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #bdbdbd;
}
.main-container {
    min-height: 100vh;
}
.form-group {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    margin-top: 1.5rem;
}

/* Input styling */
.form-input {
    width: 100%;
    padding: 10px 14px;
    font-size: 12px;
    color: #666;
    border: 1px solid #ccc;
    border-radius: 25px;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.3s ease-in-out;
    background-color: transparent;
}

/* Placeholder color */
.form-input::placeholder {
    font-size: 0.8rem;
}

/* Label styling */
.form-label {
    position: absolute;
    top: 0;
    left: 12px;
    transform: translateY(-50%);
    background-color: white;
    padding: 0 5px;
    font-size: 12px;
    color: var(--primary); /* Match the blue color */
    pointer-events: none;
}

.switch {
    height: 22px;
}
.slider {
    height: 22px;
}
