body{
    font-family: 'Montserat',Arial, Verdana;
  /*  background: linear-gradient(135deg, hsl(204, 16%, 35%), #ecd5f5) no-repeat fixed;*/
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
     background-color: rgba(154, 20, 53, 0.5);
    padding: 20px;
    color: #ffffff;
    border-radius: 25px;
    font-weight: 100;
}

/* Media Query for small screens */
@media screen and (max-width: 480px) {
    .header-name {
        font-size: 12px;
    }
}

/* Media Query for medium screens */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .header-name {
        font-size: 18px;
    }
}

/* Media Query for large screens */
@media screen and (min-width: 769px) {
    .header-name {
        font-size: 20px;
    }
}

a{
    cursor: pointer;
}



.branding {
    display: flex;
    align-items: center;
}

.logo {
    max-width: 50px;
}

.header-name {
    margin-left: 10px;
}



.mobile-number-entry {
    max-width: 500px;
    margin: 50px auto;
    padding: 50px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: #0062cc solid 2px;
    border-radius: 25px;
}

h1 {
    margin-top: 0;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}


input[type="tel"] {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

button[type="submit"] {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0062cc;
}


.vendor_list_home {
    max-width: 900px;
    margin: 50px auto;
    padding: 50px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: #0062cc solid 2px;
    border-radius: 25px;
}


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Center the content vertically */
    min-height: 100vh; /* Ensure the page takes up at least the height of the viewport */
}



input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #45a049;
}


.custom-alert.alert-warning {
    background-color: #fff3cd; /* Light yellow background */
    border-color: #ffeeba; /* Yellow border color */
    color: #856404; /* Dark yellow text color */
    width: 100%;
    height: 8vh;
    text-align: center;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    align-items: center;

}