@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
body{
    font-family: "Poppins", sans-serif;;
    margin: 0;
    padding: 0;
    height: 100vh;
    /* width: 100%; */
    background: url(../img/Target-M.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    padding: 10px 90px;
    box-sizing: border-box;
    /* background: rgba(0, 0, 0, 0.5); */
    /* border-bottom: 1px solid #fff; */
}

nav .logo{
    height: 80px;
    float: left;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
}

nav ul{
    list-style: none;
    float: right;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li a{
    text-decoration: none;
    line-height: 80px;
    color: #fff;
    padding: 12px 13px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

nav ul li a:hover{
    background: rgba(0, 0, 0, 0.7);
    border-radius: 6px;
}


/* Additional CSS for dropdown */
#userTypeDropdown {
    display: none;
    color: #fff;
    font-weight: bold;
    font-family: "Poppins";
    width: 400px; /* Set the width of the dropdown */
    flex-direction: column;
    align-items: center;
    font-size: 16px; /* Set the font size */
    text-align: center; /* Center align the text */
    position: absolute; /* Use absolute positioning */
    left: 50%; /* Position the left edge at the center */
    top: 40%; /* Position the left edge at the center */
    transform: translateX(-50%); /* Center the dropdown horizontally */
    padding: 10px; /* Add padding for spacing */
    border: 1px solid #ccc; /* Add border for a subtle separation */
    background-color: rgba(0, 0, 0, 0.2); /* Set background color to white */
    border-radius: 5px; /* Add border-radius for rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add box shadow for depth */
}
#userTypeDropdown * {
  width: 100% !important;
  box-sizing: border-box;
  max-width: 100% !important;
}
#userTypeSelect {
    color: #fff;
    font-weight: bold;
    font-family: "Poppins";
    width: 400px; /* Set the width of the dropdown */
    font-size: 16px; /* Set the font size */
    text-align: center; /* Center align the text */
    left: 50%; /* Position the left edge at the center */
    top: 50%; /* Position the left edge at the center */
    padding: 10px; /* Add padding for spacing */
    border: 1px solid #ccc; /* Add border for a subtle separation */
    background-color: rgba(0, 0, 0, 0.2); /* Set background color to white */
    border-radius: 5px; /* Add border-radius for rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add box shadow for depth */
}

/* Style the dropdown in the form */
.dropdown {
    align-items: center;
    justify-content: center;
    width: 100%; /* Set the width of the dropdown */
    font-size: 16px; /* Set the font size */
    text-align: center; /* Center align the text */
    margin-bottom: 10px; /* Add margin for spacing */
}

/* Additional CSS for login form */
.login__form {
    display: none; /* Initially hide the form */
    position: absolute; /* Use absolute positioning */
    left: 50%; /* Position the left edge at the center */
    top: 50%; /* Position the top edge at the center */
    transform: translate(-50%, -50%); /* Center the form horizontally and vertically */
    padding: 40px; /* Increased padding for spacing */
    border: 1px solid #ccc; /* Add border for a subtle separation */
    background-color: transparent; /* Set background color to transparent */
    color: #fff; /* Font color set to white */
    border-radius: 10px; /* Add border-radius for rounded corners */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add box shadow for depth */
    width: 450px; /* Set a wider width for the form */
    font-size: 16px; /* Increased font size for better readability */
}

/* Style the login form inputs and labels */
.login__input{
    display: flex; /* Use flexbox to align input boxes and labels */
    align-items: center; /* Center-align items vertically */
    margin-bottom: 12px; /* Increased margin bottom for spacing */
}

.login__label {
    width: 10%; /* Set width for labels */
    text-align: right; /* Align text of labels to right */
    margin-right: 30%; /* Add margin between label and input box */
}

.login__input {
    /* flex: 1; Take remaining space in flex container */
    padding: 15px; /* Increased padding for input boxes */
    width: 450px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box;
    font-size: 16px; /* Increased font size for input boxes */
    color: #212529; /* Font color set to blackish */
}

/* Style the login form button */
.login__button {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 20px; /* Added margin top for spacing */
    background-color: #343a40; /* Dark background color for button */
    color: #fff; /* Font color set to white */
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

/* Style the login form button on hover */
.login__button:hover {
    background-color: #1d2124; /* Darker background color on hover */
}

/* Style the login form description */
.login__description {
    margin-bottom: 30px; /* Increased margin bottom for spacing */
}

/* Style the login form check label */
.login__check-label {
    margin-left: 5px; /* Added margin left for spacing */
}

/* Style the forgot password link */
.login__forgot {
    display: block;
    text-align: center; /* Center-align the text */
    padding: 10px 0; /* Add padding top and bottom */
    color: #fff; /* Font color set to white */
}
@media(max-width:680px){
  nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  nav .logo {
    padding: 0 !important;
    text-align: center;
  }
  nav ul {
    justify-content: center;
  }
  #userTypeDropdown{
    width: 85% !important;
  }
}
