* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    justify-content: center;
    align-items: center;
    min-height: 700px;
    background-color: #f8f9fa;
    padding: 100px 0 0 0;

}

.loginhh {
    margin: 20px auto;
    width: 420px;
    background-color: #ffffff;
    border: 2px solid #2d6a4f;
    /* box-shadow: 0 0 10px rgb(123, 255, 0); */
    color: #333333;
    border-radius: 10px;
    padding: 30px 40px;
}

.loginhh h1 {
    font-size: 36px;
    text-align: center;
}

.loginhh .box {
    width: 100%;
    height: 50px;
    position: relative;
    margin: 30px 0;
}

.box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid #95d5b2;
    border-radius: 40px;
    font-size: 16px;
    color: #333333;
    padding: 20px;
}

.box i {
    position: absolute;
    right: 20px;
    top: 30%;
    font-size: 20px;
}

.loginhh .remember-forgot {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin: -15px 0 15px;
}

.remember-forgot label input {
    accent-color: black;
    margin-right: 3px;
}

.remember-forgot a {
    color: #333333;
    text-decoration: none;
}

.remember-forgot a:hover {
    text-decoration: underline;
}

.loginhh .tap {
    width: 100%;
    height: 45px;
    background: #2E7D32;
    border: none;
    outline: none;
    border-radius: 40px;
    font-size: 16px;
    color: #e7e3e3;
    /* giữ màu cuối cùng bạn chọn */
    font-weight: 600;
}

.loginhh .register {
    text-align: center;
    font-size: 14px;
    margin: 20px 0 15px;
}

.loginhh .register p a {
    color: #1b4332;
    text-decoration: none;
    font-weight: 600;
}

.loginhh .register p a:hover {
    text-decoration: underline;
}

.wrong {
    color: #e74c3c;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: center;
    padding: 10px;
    border-radius: 6px;
}

.account-container {
    background: #ffffff;
    color: #333;
    padding: 28px;
    border-radius: 12px;
    max-width: 900px;
    margin: 40px auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    font-family: "Segoe UI", Arial, sans-serif;
}

.account-header h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2e7d32;
    border-bottom: 2px solid #2e7d32;
    padding-bottom: 8px;
}

.status {
    background: #f1f8e9;
    color: #33691e;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    font-weight: 500;
}

.info {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.info span {
    font-weight: 600;
    color: #2e7d32;
}

/* label color for form fields */
.account-container form .info label {
    color: #2e7d32;
}

/* account page enhancements */
.account-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.account-header ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

.account-header ul li a {
    font-size: 18px;
    font-weight: 500;
    color: #2e7d32;
    text-decoration: none;
    padding-bottom: 8px;
}

.account-header ul li a:hover {
    border-bottom: 2px solid #0e531b;
}

.account-header ul li.user a {
    border-bottom: 2px solid #0e531b;
}

.account-container form .info input[type="text"],
.account-container form .info input[type="email"],
.account-container form .info select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    margin-top: 4px;
}

.account-container form .info input::placeholder {
    color: #999;
}

.account-container .address-group {
    display: flex;
    gap: 10px;
}

.account-container .address-group select {
    flex: 1;
}

.account-container .tap {
    width: 100%;
    height: 45px;
    background: linear-gradient(90deg, #2e7d32, #1b5e20);
    border: none;
    outline: none;
    border-radius: 40px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
}

.account-container .tap:hover {
    opacity: 0.9;
}