/* 
----------------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------------
                            Customer Registration Style - Customer Login Style
----------------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------------------------------------
*/

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background-color: #f3f4f6;
    margin: 0;
}

.form-container {
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding-right: 55px;
    POSITION: RELATIVE;
    TOP: 37PX;
}

h2 {
    margin-bottom: 1.5rem;
    color: #333333;
    font-size: 1.5rem;
}

/* Style for the form */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Each row contains two form groups side by side */
.form-row {
    display: flex;
    gap: 3rem;
}

/* Form group styling for two-column layout */
.form-group {
    flex: 1;
}

label {
    display: block;
    font-weight: bold;
    color: #555555;
    margin-bottom: 0.5rem;
    text-align: left;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
}

/* Submit button styling */
input[type="submit"] {
    padding: 0.75rem;
    background-color: #4f4f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="submit"]:hover {
    background-color: #97a100;
}

/* Link to login page */
p {
    margin-top: 1rem;
}

p a {
    color: #4f4f4f;
    text-decoration: none;
    font-weight: bold;
}

p a:hover {
    text-decoration: underline;
}

/* Popup styling */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #4f4f4f;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1000;
}

.popup button {
    background-color: #ffffff;
    color: #4f4f4f;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    margin-top: 1rem;
}

.popup button:hover {
    background-color: #f3f3f3;
}

/* Welcome container for dashboard */
.welcome-container {
    max-width: 500px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: auto;
}

.welcome-message {
    font-size: 1.2rem;
    color: #333333;
    margin-bottom: 1.5rem;
}

.button {
    padding: 0.75rem 1.5rem;
    background-color: #4f4f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0757e0;
}
#country{
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
    }
#type{
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
    }
/*
-----------------------------------------------------------------
----------------------------------------------------------------- 
-----------------------------------------------------------------
                Navbar.php Style
-----------------------------------------------------------------
-----------------------------------------------------------------
-----------------------------------------------------------------
*/

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #4f4f4f;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s ease;
    font-weight: 600;
}

.navbar a:hover {
    background-color: #fff;
    color:#4f4f4f;
    border-radius: 5px;
}

.navbar .profile {
    font-weight: bold;
    color: #FFD700;
}

.navbar .active {
    background-color: #ffffff;
    color: black;
    border-radius: 5px;
}

/*
-----------------------------------------------------------------
----------------------------------------------------------------- 
-----------------------------------------------------------------
                .............................
-----------------------------------------------------------------
-----------------------------------------------------------------
-----------------------------------------------------------------
*/
