
body { font-family: Arial, sans-serif; margin: 0; padding: 0; }

/*------------HEADER-------*/
.header {
    display: flex;
    justify-content: space-between; /* Căn đều không gian */
    align-items: center;
    padding: 20px 5%;
    background: #fff;
    border-bottom: 1px solid #ccc;
}

/* Logo căn trái */
.logo {
    flex: 0 1 auto; /* Không co dãn */
}

/* Container chứa 3 khối thông tin */
.info {
    display: flex;
    justify-content: space-around; /* Căn đều khoảng cách */
    flex: 1; /* Chiếm toàn bộ không gian còn lại */
    min-width: 60%; /* Đảm bảo không bị ép nhỏ */
}

/* Mỗi khối thông tin */
.info-item {
    flex: 1; /* Các khối bằng nhau */
    min-width: 120px; /* Chiều rộng tối thiểu */
    text-align: center; /* Căn giữa nội dung */
    padding: 0 10px; /* Khoảng cách hai bên */
}

.logo img {
    height: auto; /* Tự động điều chỉnh chiều cao */
    width: 100%; /* Chiếm toàn bộ chiều rộng khung logo */
    max-height: 100px; /* Giới hạn chiều cao tối đa */
    object-fit: contain; /* Đảm bảo logo hiển thị đầy đủ */
    padding: 5px 0; /* Thêm khoảng đệm trên dưới */
}


.header-emoji {
    font-size: 24px;
    margin-right: 10px;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-text span:first-child {
    font-weight: bold;
    margin-bottom: 4px;
}

.info-text span:last-child {
    font-size: 14px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .info {
        display: none !important; /* Ưu tiên cao nhất */
    }
    
    /* Đảm bảo header không bị trống */
    .header {
        justify-content: center;
        padding: 15px 0;
    }
    
    /* Logo chiếm toàn bộ width nếu cần */
    .logo img {
        max-width: 200px; /* Hoặc kích thước bạn muốn */
        margin: 0 auto;
    }
}

/*===================NAVBAR========================*/

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 15px;
    background-color: green;
    gap: 10px;

}


.navbar a {
    padding: 10px 20px;
    text-decoration: none;
    color: white;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}

.dropdown {
    position: relative;
}

/* Chỉnh lại dropdown menu để không có khoảng cách */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Stick to the parent menu */
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-top: 0; /* No margin */
    padding-top: 0; /* No padding */
}
/* Tạo một khoảng đệm ẩn để dễ di chuột từ menu cha xuống dropdown */
.dropdown::after {
    content: "";
    display: block;
    height: 10px; /* Hidden padding */
    position: absolute;
    bottom: -10px;
    width: 100%;
    left: 0;
    background-color: transparent;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: black;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    height: auto;
    background-color: white;
}

.dropdown-content a:hover {
    background-color: orange;
    color: white;
}

/* ===== NÚT GIỎ HÀNG ===== */
.cart-button {
    background-color: orange; /* Màu cam */
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px; /* Bo tròn */
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cart-button:hover {
    background-color: darkorange; /* Màu cam đậm khi hover */
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cart-button:active {
    transform: translateY(0);
}

/* Đảm bảo màu cam cho mục active */
.navbar a.active {
    background-color: orange;
}

.search-container {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-container input {
    padding: 7px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 280px; /* Làm dài hơn trên desktop */
    max-width: 100%;
    font-size: 14px;
}

.search-container button {
    padding: 7px 14px;
    border: none;
    background-color: orange;
    color: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.search-container button:hover {
    background-color: darkorange;
}

@media screen and (max-width: 768px) {
    .navbar a,
    .navbar .dropbtn {
        width: 100%;
        text-align: center;
        justify-content: center;
        height: auto;
        padding: 12px 0;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

    .dropdown-content {
        position: static;
        width: 100%;
        border: none;
        box-shadow: none;
    }

    .dropdown-content a {
        padding: 10px 20px;
        border-top: 1px solid #eee;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/*============REPONSIVE LẠI THANH TÌM KIẾM===============*/
@media screen and (max-width: 768px) {
    .search-box {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .search-box input[type="text"] {
        width: 80%;
        max-width: 300px;
        padding: 8px;
        border-radius: 4px 0 0 4px;
    }

    .search-box button {
        padding: 8px 12px;
        border-radius: 0 4px 4px 0;
    }
}


/*----------------------- Responsive HEAADER------------------------*/
@media screen and (max-width: 768px) {
    .header {
        flex-direction: column;
        padding: 10px 15px;
    }
    
    .info {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .info-item {
        min-width: 100px;
    }
}



/*------------------------FOOTER---------------------------------*/
.footer {
    background: green;
    padding: 20px;
    margin-top: 20px;
   /* display: flex;
    flex-direction: column;*/
    color: white;
}

.footer-content {
    display: flex;
    /*justify-content: space-between;*/
	flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-info {
    /*text-align: left;*/
    flex: 1;
	padding-right: 20px;
    min-width: 300px;
}

.footer-info h2 {
    margin-top: 0;
    font-size: 1.5em;
    text-transform: uppercase;
}

.footer-info h3 {
    font-size: 1em;
    font-weight: normal;
    margin: 8px 0;
}

.footer-map {
    /*flex: 1;
    text-align: right;*/
	flex: 2;
	width: 100%
}

.footer-map iframe {
    /*max-width: 100%;*/
	width: 100%;
    height: 250px;
	border: none;
}

.footer-copyright {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive design cho footer */
@media screen and (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-info, .footer-map {
        width: 100%;
        flex: none;
        margin-bottom: 20px;
    }
    
    .footer-info {
        padding-right: 0;
    }
    
    .footer-map iframe {
        height: 200px;
    }
}


/* === BANNER VỚI MŨI TÊN === */
.banner-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 20px auto; /* Đảm bảo khoảng cách trên dưới và căn giữa */
  width: 100%;
  max-width: 1200px; /* Giới hạn chiều rộng tối đa */
  padding: 0 20px; /* Thêm padding hai bên để tạo khoảng cách đều */
  box-sizing: border-box; /* Đảm bảo padding không làm tăng kích thước tổng thể */
  
}

.banner {
  width: 100%;
  height: 450px; /* Tăng chiều cao cố định */
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Giữ tỷ lệ ảnh và phủ đầy banner */
    object-position: center; /* Căn giữa nội dung ảnh */
}



.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  z-index: 2;
  transition: background-color 0.3s ease;
}
.arrow:hover {
  background-color: rgba(0, 0, 0, 0.7);
}
.arrow.left {
  left: 30px;
}
.arrow.right {
  right: 30px;
}

/* === SẢN PHẨM NỔI BẬT === */
.product-section {
  padding: 30px;
  text-align: center;
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.product-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.product-card img {
  width: 100%;
  border-radius: 10px;
}

@media (min-width: 1024px) {
  .container {
    flex-wrap: nowrap !important;
  }
}


@media screen and (max-width: 768px) {
    .dropdown-content {
        position: relative;
        width: 100%;
        background-color: #fff;
        border: 1px solid #ccc;
    }

    .dropdown-content a {
        padding: 10px 15px;
    }
}


/* ===== TOPBAR ===== */
.topbar {
    background: green;
    color: white;
    padding: 8px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Desktop - giữ nguyên bố cục ngang */
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Mobile - chuyển sang bố cục dọc */
@media screen and (max-width: 768px) {
    .topbar {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .topbar-info {
        margin-bottom: 10px;
    }

    .topbar-right {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    /* Xử lý chữ "hoặc" xuống dòng */
    .topbar-right > a:nth-child(1)::after {
        content: "\A";
        white-space: pre;
    }

    /* Nút giỏ hàng */
    .cart-button {
        margin-top: 5px;
    }
}

/* Thêm khoảng cách giữa navbar và banner */
.container {
  margin-top: 20px; /* Khoảng cách bạn muốn */
}

/* Đảm bảo banner không bị dính sát navbar */
.banner-container {
  margin-top: 50px;
}


/*=================================SẢN PHẨM===============*/
.product-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 30px 0;
}

.product-item {
  width: 250px;
  border: 1px solid #eee;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.product-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-item h3 {
  font-size: 18px;
  margin: 10px 0;
}

.product-item p {
  color: #d60000;
  font-weight: bold;
  font-size: 16px;
}

.product-item:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .product-list {
    flex-direction: column;
    align-items: center;
  }
  .product-card {
    width: 90%;
  }
  .product-card img {
    height: auto;
  }
  .product-category h2 {
    font-size: 1.4rem;
    margin: 20px 0;
  }
}


/*=============chi tiết sản phẩm===================*/

.product-detail-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.product-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-info {
  max-width: 500px;
}

.product-info h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.product-info .price {
  color: red;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: bold;
}

.product-info .description {
  font-size: 16px;
  margin-bottom: 20px;
  color: #444;
}

.add-to-cart {
  background-color: #ff6600;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.add-to-cart:hover {
  background-color: #e85c00;
}


/*=============================================*/
/* Responsive cho chi tiết sản phẩm */
@media screen and (max-width: 768px) {
  .product-detail {
    flex-direction: column;
    align-items: center;
  }

  .product-detail img {
    width: 80%;
  }

  .product-detail .info {
    text-align: center;
    width: 90%;
  }

  .cart-item {
    flex-direction: column;
    align-items: center;
  }

  .cart-item img {
    width: 60%;
  }

  .cart-item .cart-info {
    text-align: center;
  }

  .cart-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/*==========GIỎ HÀNG===*/

.cart-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cart-container h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #333;
}

#cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

#cart-table th, #cart-table td {
  border: 1px solid #ddd;
  padding: 12px 15px;
  text-align: center;
}

#cart-table th {
  background-color: #f2f2f2;
  color: #333;
}

#cart-table img {
  max-width: 80px;
  height: auto;
  border-radius: 8px;
}

.cart-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.cart-actions button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background-color: #2196f3;
  color: white;
  transition: background-color 0.3s ease;
}

.cart-actions button:hover {
  background-color: #0b7dda;
}

/* Responsive */
@media (max-width: 768px) {
  .cart-container {
    padding: 10px;
  }

  #cart-table th, #cart-table td {
    font-size: 14px;
    padding: 8px;
  }

  .cart-actions {
    flex-direction: column;
    align-items: center;
  }

  .cart-actions button {
    width: 80%;
    margin-bottom: 10px;
  }
}

/*====================Phần trang chủ===============*/
/* Định dạng phần giá sản phẩm */
.product-price-container {
  margin-top: 5px;
  text-align: center;
}

.product-price-current {
  color: red;
  font-weight: bold;
  font-size: 16px;
  display: block;
  margin-bottom: 3px;
}

.product-price-old {
  color: #aaa;
  text-decoration: line-through;
  font-size: 14px;
  display: block;
}

/* Nút thêm vào giỏ hàng */
.add-to-cart-btn {
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-to-cart-btn:hover {
  background-color: #e85c00;
}

/* Đảm bảo nút được căn giữa */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card a {
  text-decoration: none;
  color: #000;
}

.product-card h3 {
  color: #000;
  margin: 10px 0 5px;
}


/*==============phần danh mục===============*/

/* Định dạng danh sách sản phẩm trong trang danh mục */
.product-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  border: 1px solid #eee;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: scale(1.03);
}

.product-item a {
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.product-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 10px;
}

.product-item h3 {
  font-size: 18px;
  margin: 10px 0;
  color: #000;
}

/* Áp dụng định dạng giá giống như ở trang chủ */
.product-item .product-price-container {
  margin-top: 5px;
  text-align: center;
}

.product-item .product-price-current {
  color: #ff0000;
  font-weight: bold;
  font-size: 16px;
  display: block;
  margin-bottom: 3px;
}

.product-item .product-price-old {
  color: #aaa;
  text-decoration: line-through;
  font-size: 14px;
  display: block;
}

/* Nút thêm vào giỏ hàng - giống như trang chủ */
.product-item .add-to-cart-btn {
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-item .add-to-cart-btn:hover {
  background-color: #e85c00;
}


/* ===== CHỈNH TIÊU ĐỀ SẢN PHẨM NỔI BẬT/MỚI ===== */
.product-section h2 {
  display: inline-block;
  background-color: green;
  color: white;
  padding: 10px 25px;
  border-radius: 30px; /* Bo tròn */
  font-size: 1.2em;
  margin-bottom: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


/* Cải thiện nút thanh toán trong giỏ hàng */
.cart-actions button {
  padding: 12px 25px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
}

.cart-actions button:nth-child(2) {
  background-color: #f44336;
  color: white;
}

.cart-actions button:last-child {
  background-color: #4CAF50;
  color: white;
}

.cart-actions button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Hiệu ứng khi nhấn button */
.cart-actions button:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/*================================================================*/
/* Chỉnh sửa navbar bằng với topbar */
.navbar {
    width: 100%;
    padding: 10px 30px; /* Giống với topbar */
    box-sizing: border-box; /* Đảm bảo padding không làm tăng kích thước */
}

/* ===== FIX THANH TÌM KIẾM TRÊN MOBILE ===== */
@media screen and (max-width: 768px) {
    .search-container {
        width: 100%; /* Chiếm full width */
        justify-content: center; /* Căn giữa */
        margin: 15px 0; /* Thêm khoảng cách */
        padding: 0 20px; /* Đệm hai bên */
    }

    .search-container input {
        width: 80% !important; /* Rộng hơn */
        margin-right: 5px; /* Khoảng cách với nút */
    }

    .search-container button {
        padding: 8px 15px; /* Cân đối nút */
    }
}

/* ===== RESPONSIVE BANNER MOBILE ===== */
@media screen and (max-width: 768px) {
  .banner-container {
    padding: 0 10px; /* Giảm padding hai bên */
  }
  
  .banner {
    height: 200px !important; /* Giảm chiều cao banner */
    border-radius: 8px; /* Bo góc nhẹ */
  }
  
  .arrow {
    font-size: 20px !important; /* Thu nhỏ mũi tên */
    padding: 6px !important;
  }
  
  .arrow.left {
    left: 15px !important; /* Điều chỉnh vị trí mũi tên trái */
  }
  
  .arrow.right {
    right: 15px !important; /* Điều chỉnh vị trí mũi tên phải */
  }
}

/* === CHỈNH SỬA THẺ SẢN PHẨM ĐỒNG ĐỀU === */
.product-card {
    border-radius: 12px !important; /* Bo tròn đều */
    width: 220px !important; /* Cố định chiều rộng */
    height: 320px !important; /* Cố định chiều cao */
    padding: 15px !important;
    margin: 10px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.product-card img {
    border-radius: 10px 10px 0 0 !important; /* Bo tròn phần đầu ảnh */
    height: 160px !important; /* Cố định chiều cao ảnh */
    object-fit: cover !important; /* Đảm bảo ảnh không bị méo */
}

/* Responsive cho mobile */
@media screen and (max-width: 768px) {
    .product-card {
        width: 160px !important; /* Nhỏ hơn trên mobile */
        height: 280px !important;
        margin: 8px !important;
    }
    
    .product-card img {
        height: 120px !important;
    }
}

/* ===== TÌM KIẾM ===== */
.search-container {
  background: #fff;
  border-radius: 30px;
  padding: 5px 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  width: 300px;
  margin-left: auto; /* Căn phải trên desktop */
}

.search-container input {
  border: none;
  outline: none;
  width: 80%;
  padding: 8px;
}

.search-container button {
  background: orange;
  border: none;
  color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .search-container {
    width: 90%;
    margin: 15px auto; /* Căn giữa */
  }
}


/*=============================================================*/

/* Trang kết quả tìm kiếm */
#search-title {
    margin: 30px 0;
    text-align: center;
    color: #333;
    font-size: 24px;
    font-weight: bold;
}

.search-highlight {
    background-color: #ffeb3b;
    padding: 2px;
}

/* Nút quay lại */
.back-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.back-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

/* CSS cho form tìm kiếm */
#search-form {
    display: flex;
    width: 100%;
}

#search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 8px 12px;
    border-radius: 5px 0 0 5px;
}

#search-form button {
    border: none;
    background-color: orange;
    color: white;
    padding: 8px 15px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
}

#search-form button:hover {
    background-color: darkorange;
}

/* Responsive cho trang kết quả tìm kiếm */
@media screen and (max-width: 768px) {
    #search-title {
        font-size: 20px;
        margin: 20px 0;
    }
    
    .product-grid {
        gap: 10px;
        padding: 0 10px;
    }
}


/* ===== FORM ĐĂNG NHẬP/ĐĂNG KÝ ===== */
#container {
    width: 100%;
    min-height: 500px;
    background-color: white;
    padding: 30px 0;
}

#wrapper {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
    min-height: 500px;
}

#wrapper form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

#wrapper h2 {
    text-align: center;
    color: green;
    margin-bottom: 25px;
    font-size: 24px;
}

#wrapper input[type="text"],
#wrapper input[type="password"],
#wrapper input[type="email"] {
    width: 100%;
    padding: 12px;
    margin: 8px 0 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
}

/*
#wrapper input[type="submit"] {
    width: 100%;
    padding: 12px;
    background-color: green;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}*/

#wrapper input[type="submit"]:hover {
    background-color: #006400;
}

#wrapper button[type="submit"]{
	width: 100%;
    padding: 12px;
	text-align: center;
	background-color: green;
	color: white;
	border-radius: 5px ;
	border: none;
	font-size: 16px;
	cursor: pointer;
	margin-top: 10px;
	
}

#wrapper label {
    display: block;
    margin-top: 15px;
    text-align: left;
    color: #555;
}

#wrapper a {
    color: green;
    text-decoration: none;
    font-weight: bold;
}

#wrapper a:hover {
    text-decoration: underline;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 15px;
}

.success-message {
    color: green;
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 15px;
}



