/* Thiết lập cơ bản và font */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* Màu nền gradient nhạt */
    background: linear-gradient(180deg, #f0f4ff 0%, #e0eaff 100%);
    min-height: 100vh;
    display: flex; /* Sử dụng flexbox để căn giữa */
    justify-content: center;
    align-items: center;
}

/* Container chứa form */
.reset-container {
    padding: 20px;
}

/* Card chứa nội dung */
.reset-card {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px; /* Giới hạn chiều rộng của form */
    text-align: center;
    /* Hiệu ứng bóng đổ nhẹ */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Logo/Tiêu đề */
.logo-title {
    font-size: 28px;
    color: #4A90E2; /* Màu xanh ZaloBot */
    font-weight: 700;
    margin-bottom: 5px;
}

.logo-title strong {
    font-weight: 900;
}

.subtitle {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 600;
}

.instruction {
    color: #666;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.5;
}

/* Form */
.reset-form {
    text-align: left;
}

.reset-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
    font-size: 14px;
}

/* Group input */
.input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px 15px;
    background-color: #f9f9f9;
    margin-bottom: 30px; /* Thêm khoảng cách lớn hơn cho nút */
}

.input-group .icon {
    color: #aaa;
    margin-right: 10px;
    font-size: 16px;
}

.input-group input {
    flex-grow: 1;
    border: none;
    outline: none;
    padding: 5px 0;
    background: transparent;
    font-size: 16px;
}

.input-group input::placeholder {
    color: #bbb;
}

/* Nút Gửi hướng dẫn */
.btn-send-instructions {
    width: 100%;
    padding: 12px;
    background-color: #4A90E2;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-send-instructions:hover {
    background-color: #3b7cdb;
}

/* Quay lại đăng nhập */
.back-to-login {
    margin-top: 25px;
    padding-top: 10px;
    font-size: 15px;
}

.back-link {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
}