﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.tuvi-card {
    border: none;
    overflow: hidden;
    border-radius: 15px;
}

.card-header {
    background-color: #ba8bba; /* Màu tím trong ảnh */
}

.title-font {
    color: white;
    font-family: 'Dancing Script', cursive; /* Hoặc font chữ nghệ thuật tương tự */
    font-weight: bold;
}

.form-label {
    font-weight: 500;
}

/* Box hiển thị lịch âm tự động */
.lunar-box {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffd700; /* Màu vàng kim */
}

/* Nút bấm lớn */
.btn-submit {
    background: linear-gradient(to right, #ba8bba, #9b59b6);
    border: none;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 10px;
    transition: 0.3s;
}

    .btn-submit:hover {
        transform: scale(1.02);
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
