@font-face {
    font-family: 'Dirtyline'; /* Name you want to use for the font */
    src: url('/wp-content/themes/veryfi_2.0/assets/embedded/fonts/Dirtyline_36daysoftype.otf') format('opentype');
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, sans-serif;
    background-color: #1a0033;
    color: white;
}

.header {
    background-color: #6b21a8;
    padding: 1rem;
    text-align: center;
}

.logo {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.product-section {
    display: flex;
    padding: 2rem;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.product-image {
    flex: 0 0 auto;
    background-color: #2563eb;
    padding: 1rem;
    border-radius: 1rem;
}

.product-info {
    flex: 1;
}

.price {
    color: #22c55e;
    font-size: 1.5rem;
    font-weight: bold;
}

.reviews {
    padding: 2rem;
    text-align: center;
    background-color: #1e1b4b;
    font-size: 0.8rem;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.review-card {
    background-color: #312e81;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.stars {
    color: #a855f7;
    font-size: 1.2rem;
}

.signup-section {
    max-width: 800px;
    margin-top: 2.5rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    background-color: white;
    border-radius: 1rem;
    color: #1a0033;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

input, button, select {
    padding: 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
}

button {
    background-color: #6b21a8;
    color: white;
    cursor: pointer;
    border-style: solid;
}

button:hover {
    background-color: #4c1d95;
}

.btn-primary {
    border-color: #6b21a8;
    border-width: 2px;
}

.btn-secondary {
    background-color: transparent;
    border-color: #22c55e;
    border-width: 2px;
    transition: all 0.2s ease;
}


.btn-secondary:hover,
.btn-secondary:focus {
    background-color: #4c1d95;
    color: white;
}


.stars-background {
    position: fixed;  /* or absolute depending on your needs */
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('/wp-content/themes/veryfi_2.0/assets/embedded/images/bg-stars.png');
    background-repeat: repeat;
    background-position-y: 100px;
    background-size: 80px;
    z-index: -1;  /* puts it behind other content */
    opacity: 0.1;
}

.product-section {
    background-color: #1a0033;
}

h1 {
    font-size: 3rem;
    margin-bottom: 0px;
    font-weight: normal;
}

h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
}

h1::first-letter, h2::first-letter {
    font-family: 'Dirtyline', system-ui, -apple-system, sans-serif;
}

.tip {
    position: absolute;
    background-color: yellow;
    margin: 8px;
    padding: 8px;
    border-radius: 10px;
    min-width: 200px;
    max-width: 300px; /* Adjust width as needed */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: adds subtle shadow */
    left: 100%; /* Positions the tip immediately after the parent */
    top: 0; /* Aligns with top of parent */
    margin-right: 16px; /* Space between parent and tip */
    border: 1px dashed black;
}

.tip-container {
    position: relative;
}

.tip .veryfi-logo {
    width: 80%;
    padding-bottom: 10px;
    border-bottom: 1px solid black;
}

.veryfi-error-message {
    text-align: left;
}
