body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff5733;
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.floating-btn:hover {
  background-color: #c0392b;
}















/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;  /* Soft gray background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #333;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    width: 350px;
    text-align: center;
    box-sizing: border-box;
}

h1 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #4C8BF5;  /* Soft blue header */
}

.greeting {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4C8BF5;
}

.button-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    padding: 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;



































/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #6e7dff, #4b59f7);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.welcome-box {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-container {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.btn {
    padding: 15px 25px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.btn-dashboard {
    background-color: #28a745;
}

.btn-shipping {
    background-color: #007bff;
}

.btn-logout {
    background-color: #dc3545;
}

.btn-login {
    background-color: #ff5722;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 10px;
}

a {
    text-decoration: none;
}




body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
}

.form-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}

input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #28a745;
    color: white;
    border: none;
    padding: 10px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #218838;
}

p {
    margin-top: 10px;
}
