
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: linear-gradient(90deg, #003366 0%, #006666 50%, #009999 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}



header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: white;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: auto;
}



.password-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #00a896;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.lock-icon {
    width: 18px;
    height: 18px;
    border: 2px solid #00a896;
    border-radius: 4px;
    position: relative;
}

.lock-icon::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 6px;
    border: 2px solid #00a896;
    border-bottom: none;
    border-radius: 4px 4px 0 0;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}



main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;

   

    background-image: url('image/brandshop banners.jpg');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}


.content-card {
    background: white;
    border-radius: 24px;
    padding: 80px 100px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
}


h1 {
    font-size: 48px;
    font-weight: 300;
    color: #4a5568;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.message {
    font-size: 18px;
    line-height: 1.8;
    color: #718096;
    margin-bottom: 20px;
}

.email-link {
    color: #00a896;
    text-decoration: none;
    font-weight: 500;
}

.email-link:hover {
    text-decoration: underline;
}



footer {
    background: white;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icon img {
    width: 32px;
    height: 32px;
    transition: opacity 0.3s;
}

.social-icon:hover img {
    opacity: 0.7;
}

.footer-text {
    color: #4a5568;
    font-size: 14px;
}
