@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #2D3047;
    --accent: #FFD166;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6C757D;
    --light-gray: #E9ECEF;
    --success: #28A745;
    --danger: #DC3545;
    --border: #DEE2E6;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shopper_account {
    width: unset;
    min-width: 80%;
    max-width: 80%;
}

@media(max-width:768px){
    .shopper_account {
        max-width: 100%;
        min-width: 100%;
        min-height: 95vh;
        margin-bottom: unset;
        padding-bottom: unset;
    }
}

/* Password toggle styles - add to your existing style.css */
.password-input-container {
    position: relative;
}

.password-input-container input {
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray);
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.toggle-password:hover {
    color: var(--primary);
    background: var(--light-gray);
}

.toggle-password svg {
    display: block;
}

.modal-close {
    background-color: transparent;
    border: none;
    font-size: 25px;
    cursor: pointer;
    color: var(--primary);
}

.small_logo {
    width: 200px;
}

.thank_you_title {
    font-size: 30px;
    color: var(--light);
}

.thank_you_text {
    margin-top: 20px;
    color: var(--light);
}

.email_link {
    padding: 10px;
    background-color: var(--primary);
    color: var(--light);
    display: flex;
    align-items: center;
    margin-top: 30px;
    text-decoration: none;
    gap: 20px;
}

.modal-footer-text a {
    text-decoration: none;
    color: var(--primary);
}

.modal-footer-text a:hover {
    text-decoration: underline;
}

@media(max-width:768px){
    .thank_you_title {
        font-size: 22px;
        text-align: center;
    }

    .thank_you_text {
        text-align: center;
    }
}

.mini_grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

@media(max-width:768px){
    .mini_grid {
        display: flex;
        flex-direction: column;
    }
}