@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

html, body {
    background: #18191e;
    font-family: "Poppins", sans-serif;
}

header {
    height: 200px;
    margin-top: 56px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(24, 25, 30, 1) 80%), #18191e url('../img/body-bg.gif') no-repeat center center fixed;
    background-size: cover;
}

nav.navbar {
    color: #f1f1f2;
    text-transform: uppercase;
    background: #1f2025f1
}

div.card {
    border-radius: 20px;
}

.btn {
    border-radius: 20px;
    font-weight: 600;
}

.navbar a,
.navbar a:hover,
.navbar a:focus {
    color: #f1f1f2
}

/* Label color before focus */
.form-floating label {
    color: #6c757d; /* Default label color */
    transition: color 0.3s ease; /* Smooth transition for color change */
}

/* Label color after input is focused */
.form-floating .form-control:focus ~ label {
    color: #0d6efd; /* Blue color when focused */
}

/* Label color after input is filled (when input has value) */
.form-floating .form-control:not(:placeholder-shown) ~ label {
    color: #28a745; /* Green color after input has value */
}

.offcanvas.offcanvas-start {
    width: 100vw;
    height: 100vh;
}

/* Optional: remove animation if desired */
.offcanvas {
    transition: none !important;
}