/* Mobile-First Approach - Base styles for mobile */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}



body {

    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    line-height: 1.6;

    color: #2d3748;

    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);

    min-height: 100vh;

    font-size: 16px; /* Base font size for mobile */

}



.container {

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 1rem; /* Reduced padding for mobile */

}



/* Mobile-optimized Header */

header {

    background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);

    color: white;

    padding: 0.8rem 0;

    position: fixed;

    width: 100%;

    top: 0;

    z-index: 1000;

    box-shadow: 0 4px 20px rgba(0,0,0,0.2);

    backdrop-filter: blur(20px);

}



header .container {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

}



/* Mobile Logo */

.logo {

    display: flex;

    align-items: center;

    gap: 0.75rem;

    flex-shrink: 0;

}



.logo-img {

    width: 50px;

    height: 50px;

    border-radius: 8px;

    object-fit: contain;

    box-shadow: 0 2px 10px rgba(66, 153, 225, 0.3);

}



.logo-text h1 {

    font-size: 1.5rem;

    font-weight: 700;

    background: linear-gradient(45deg, #4299e1, #63b3ed);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.logo-text p {

    font-size: 0.8rem;

    opacity: 0.8;

    display: none; /* Hide subtitle on mobile */

}



.cnpj {

    font-size: 0.7rem;

    opacity: 0.7;

    display: none; /* Hide CNPJ on mobile */

}



/* Mobile Navigation */

nav {

    width: 100%;

    order: 3;

    margin-top: 1rem;

}



nav ul {

    display: flex;

    list-style: none;

    gap: 0.5rem;

    flex-wrap: wrap;

    justify-content: center;

}



nav a {

    color: white;

    text-decoration: none;

    transition: all 0.3s ease;

    padding: 0.5rem 0.75rem;

    border-radius: 6px;

    display: flex;

    align-items: center;

    gap: 0.3rem;

    font-weight: 500;

    font-size: 0.9rem;

    white-space: nowrap;

}



nav a:hover {

    background: rgba(66, 153, 225, 0.2);

    color: #63b3ed;

}



/* Mobile Hero Section */

main {

    margin-top: 120px; /* Adjusted for mobile header */

}



.hero {

    background: linear-gradient(135deg, #1a202c 0%, #2d3748 30%, #4a5568 70%, #63b3ed 100%);

    color: white;

    padding: 3rem 0;

    position: relative;

    overflow: hidden;

}



.hero .container {

    display: block; /* Stack elements vertically on mobile */

    text-align: center;

}



.hero-content {

    margin-bottom: 2rem;

}



.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    background: rgba(66, 153, 225, 0.2);

    padding: 0.5rem 1rem;

    border-radius: 25px;

    font-size: 0.8rem;

    margin-bottom: 1rem;

    border: 1px solid rgba(66, 153, 225, 0.3);

}



.hero-content h2 {

    font-size: 2rem;

    font-weight: 700;

    margin-bottom: 1rem;

    line-height: 1.2;

}



.hero-subtitle {

    font-size: 1.1rem;

    margin-bottom: 1rem;

    color: #63b3ed;

    font-weight: 600;

}



.hero-description {

    font-size: 1rem;

    margin-bottom: 2rem;

    opacity: 0.9;

    line-height: 1.6;

}



/* Mobile CTA Buttons */

.cta-buttons {

    display: flex;

    flex-direction: column;

    gap: 1rem;

    margin-bottom: 2rem;

    align-items: center;

}



.btn {

    padding: 1rem 1.5rem;

    border: none;

    border-radius: 12px;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;

    cursor: pointer;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 0.5rem;

    font-size: 1rem;

    width: 100%;

    max-width: 280px;

    text-align: center;

}



.btn-primary {

    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);

    color: white;

    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.4);

}



.btn-secondary {

    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);

    color: #4299e1;

    border: 2px solid #4299e1;

}



/* Mobile Hero Stats */

.hero-stats {

    display: flex;

    justify-content: center;

    gap: 1rem;

    flex-wrap: wrap;

}



.stat-item {

    text-align: center;

    padding: 1rem;

    background: rgba(255, 255, 255, 0.1);

    border-radius: 12px;

    backdrop-filter: blur(10px);

    min-width: 120px;

}



.stat-number {

    font-size: 1.5rem;

    font-weight: 700;

    color: #63b3ed;

    display: block;

}



.stat-label {

    font-size: 0.8rem;

    opacity: 0.8;

}



/* Mobile Cards */

.vaga-card {

    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);

    border-radius: 16px;

    padding: 2rem;

    margin: 1rem 0;

    box-shadow: 0 8px 25px rgba(0,0,0,0.1);

    border: 1px solid rgba(255,255,255,0.8);

    transition: all 0.3s ease;

}



.vaga-card h3 {

    font-size: 1.3rem;

    margin-bottom: 1rem;

    color: #2d3748;

}



.vaga-info {

    display: grid;

    grid-template-columns: 1fr;

    gap: 1rem;

}



.info-item {

    display: flex;

    align-items: center;

    gap: 0.75rem;

    padding: 0.75rem;

    background: #f7fafc;

    border-radius: 8px;

}



.info-item i {

    color: #4299e1;

    font-size: 1.1rem;

    width: 20px;

    text-align: center;

}



/* Mobile Form */

.candidatura-form {

    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);

    border-radius: 20px;

    padding: 2rem;

    margin: 1rem;

    box-shadow: 0 15px 35px rgba(0,0,0,0.1);

    border: 1px solid rgba(255,255,255,0.9);

}



.form-row {

    display: grid;

    grid-template-columns: 1fr;

    gap: 1rem;

    margin-bottom: 1rem;

}



.form-group {

    margin-bottom: 1rem;

}



.form-group label {

    display: block;

    margin-bottom: 0.5rem;

    font-weight: 600;

    color: #2d3748;

    font-size: 0.9rem;

}



.form-group input,

.form-group select,

.form-group textarea {

    width: 100%;

    padding: 1rem;

    border: 2px solid #e2e8f0;

    border-radius: 10px;

    font-size: 1rem;

    transition: all 0.3s ease;

    background: #ffffff;

    -webkit-appearance: none;

    appearance: none;

}



.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus {

    outline: none;

    border-color: #4299e1;

    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);

}



/* Mobile Download Section */

.download-section {

    background: linear-gradient(135deg, #667eea 0%,  50%, #4299e1 100%);

    padding: 4rem 0;

    position: relative;

    overflow: hidden;

}



.download-section::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: rgba(255, 255, 255, 0.1);

    backdrop-filter: blur(10px);

}



.download-section .container {

    position: relative;

    z-index: 2;

}



.section-header {

    text-align: center;

    margin-bottom: 3rem;

}



.section-header h2 {

    font-size: 2.5rem;

    margin-bottom: 1rem;

    color: #ffffff;

    font-weight: 700;

    text-shadow: 0 2px 10px rgba(0,0,0,0.3);

    background: linear-gradient(135deg, #ffffff 0%, #f0f8ff 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.section-header p {

    font-size: 1.1rem;

    color: rgba(255, 255, 255, 0.9);

    margin-bottom: 2rem;

    text-shadow: 0 1px 3px rgba(0,0,0,0.3);

}



.mandatory-notice {

    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,0.3);

    color: white;

    padding: 2rem;

    border-radius: 20px;

    margin-bottom: 3rem;

    text-align: center;

    box-shadow: 0 8px 32px rgba(0,0,0,0.1);

}



.notice-content {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 1rem;

    flex-wrap: wrap;

}



.notice-content i {

    font-size: 1.5rem;

    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));

}



/* Mobile Download Content */

.download-content {

    display: grid;

    grid-template-columns: 1fr;

    gap: 3rem;

    text-align: center;

}



.phone-mockup {

    width: 250px;

    height: 500px;

    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);

    border-radius: 35px;

    padding: 20px;

    box-shadow: 

        0 20px 60px rgba(0,0,0,0.4),

        0 0 0 1px rgba(255,255,255,0.1),

        inset 0 1px 0 rgba(255,255,255,0.2);

    margin: 0 auto;

    position: relative;

    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);

    transition: transform 0.3s ease;

}



.phone-mockup:hover {

    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);

}



.phone-mockup::before {

    content: '';

    position: absolute;

    top: 15px;

    left: 50%;

    transform: translateX(-50%);

    width: 60px;

    height: 4px;

    background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.3) 100%);

    border-radius: 3px;

    box-shadow: 0 1px 3px rgba(0,0,0,0.3);

}



.phone-screen {

    width: 100%;

    height: 100%;

    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);

    border-radius: 25px;

    overflow: hidden;

    padding: 1.5rem;

    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);

}



.app-header {

    display: flex;

    align-items: center;

    gap: 0.75rem;

    padding-bottom: 1.5rem;

    border-bottom: 2px solid #e2e8f0;

    margin-bottom: 1.5rem;

}



.app-logo {

    width: 40px;

    height: 40px;

    border-radius: 10px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

}



.app-header span {

    font-size: 1rem;

    font-weight: 700;

    color: #2d3748;

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.app-features-preview {

    display: flex;

    flex-direction: column;

    gap: 1rem;

}



.feature-item {

    display: flex;

    align-items: center;

    gap: 1rem;

    padding: 1rem;

    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);

    border-radius: 12px;

    border: 1px solid rgba(102, 126, 234, 0.1);

    transition: all 0.3s ease;

}



.feature-item:hover {

    transform: translateX(5px);

    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);

}



.feature-item i {

    color: #667eea;

    font-size: 1.2rem;

    width: 20px;

    text-align: center;

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.feature-item span {

    font-size: 0.9rem;

    color: #2d3748;

    font-weight: 600;

}



/* Mobile Download Buttons */

.download-buttons {

    display: flex;

    flex-direction: column;

    gap: 1.5rem;

    margin-top: 3rem;

}



.download-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 1.5rem;

    padding: 1.5rem 2rem;

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    color: white;

    text-decoration: none;

    border-radius: 20px;

    font-weight: 700;

    font-size: 1.1rem;

    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    box-shadow: 

        0 10px 30px rgba(102, 126, 234, 0.4),

        0 0 0 1px rgba(255,255,255,0.1),

        inset 0 1px 0 rgba(255,255,255,0.2);

    position: relative;

    overflow: hidden;

}



.download-btn::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);

    transition: left 0.5s ease;

}



.download-btn:hover::before {

    left: 100%;

}



.download-btn:hover {

    transform: translateY(-5px) scale(1.02);

    box-shadow: 

        0 20px 40px rgba(102, 126, 234, 0.5),

        0 0 0 1px rgba(255,255,255,0.2),

        inset 0 1px 0 rgba(255,255,255,0.3);

}



.download-btn:active {

    transform: translateY(-2px) scale(0.98);

}



.btn-icon {

    font-size: 2rem;

    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));

}



.btn-text {

    text-align: left;

}



.btn-text .btn-label {

    display: block;

    font-size: 1.2rem;

    font-weight: 700;

    text-shadow: 0 1px 3px rgba(0,0,0,0.3);

}



/* Mobile Requirements */

.requirement-box {

    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(247,250,252,0.9) 100%);

    backdrop-filter: blur(10px);

    border-radius: 20px;

    padding: 2.5rem;

    margin-top: 3rem;

    border: 1px solid rgba(255,255,255,0.3);

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

}



.requirement-box h3 {

    font-size: 1.4rem;

    margin-bottom: 1.5rem;

    color: #2d3748;

    font-weight: 700;

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.requirement-list {

    list-style: none;

    padding: 0;

    margin: 1.5rem 0;

}



.requirement-list li {

    display: flex;

    align-items: center;

    gap: 1rem;

    padding: 0.75rem 0;

    font-weight: 500;

    color: #4a5568;

}



.requirement-list li i {

    color: #48bb78;

    font-size: 1.1rem;

    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.warning-text {

    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);

    padding: 1.5rem;

    border-radius: 12px;

    margin-top: 1.5rem;

    border-left: 4px solid #f56565;

    display: flex;

    align-items: flex-start;

    gap: 1rem;

}



.warning-text i {

    color: #e53e3e;

    font-size: 1.2rem;

    margin-top: 0.2rem;

}



.warning-text span {

    color: #742a2a;

    font-weight: 500;

    line-height: 1.5;

}



.app-features {

    margin-top: 3rem;

    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);

    backdrop-filter: blur(10px);

    border-radius: 20px;

    padding: 2rem;

    border: 1px solid rgba(255,255,255,0.2);

}



.app-features h3 {

    font-size: 1.3rem;

    margin-bottom: 1.5rem;

    color: #ffffff;

    font-weight: 700;

    text-align: center;

    text-shadow: 0 2px 4px rgba(0,0,0,0.3);

}



.features-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 1.5rem;

}



.feature {

    display: flex;

    align-items: center;

    gap: 1rem;

    padding: 1.5rem;

    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);

    border-radius: 15px;

    border: 1px solid rgba(255,255,255,0.3);

    transition: all 0.3s ease;

    backdrop-filter: blur(5px);

}



.feature:hover {

    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

}



.feature i {

    font-size: 1.5rem;

    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));

}



.feature span {

    color: rgba(255,255,255,0.9);

    font-weight: 600;

    text-shadow: 0 1px 3px rgba(0,0,0,0.3);

}



/* Mobile Footer */

footer {

    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);

    color: white;

    padding: 3rem 0 1rem;

}



.footer-content {

    display: grid;

    grid-template-columns: 1fr;

    gap: 2rem;

    text-align: center;

}



.footer-section h3 {

    margin-bottom: 1rem;

    color: #63b3ed;

    font-weight: 600;

    font-size: 1.1rem;

}



.footer-section p {

    margin-bottom: 0.5rem;

    font-size: 0.9rem;

    opacity: 0.8;

}



.footer-logo {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 1rem;

    margin-bottom: 1rem;

}



.footer-logo img {

    width: 60px;

    height: 60px;

    border-radius: 10px;

    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);

}



.footer-logo h3 {

    font-size: 1.5rem;

    font-weight: 700;

    background: linear-gradient(45deg, #4299e1, #63b3ed);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

}



.social-links {

    display: flex;

    gap: 1rem;

    justify-content: center;

    margin-top: 1rem;

}



.social-links a {

    width: 40px;

    height: 40px;

    background: rgba(66, 153, 225, 0.2);

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #63b3ed;

    text-decoration: none;

    transition: all 0.3s ease;

}



.social-links a:hover {

    background: #4299e1;

    color: white;

}



.footer-bottom {

    text-align: center;

    padding-top: 2rem;

    border-top: 1px solid #2d3748;

    margin-top: 2rem;

    opacity: 0.8;

    font-size: 0.8rem;

}



/* Tablet Responsive (768px and up) */

@media (min-width: 768px) {

    .container {

        padding: 0 2rem;

    }

    

    .logo-text p {

        display: block;

    }

    

    .cnpj {

        display: block;

    }

    

    nav {

        width: auto;

        order: initial;

        margin-top: 0;

    }

    

    nav ul {

        justify-content: flex-end;

    }

    

    .hero .container {

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 3rem;

        text-align: left;

    }

    

    .hero-content h2 {

        font-size: 2.5rem;

    }

    

    .cta-buttons {

        flex-direction: row;

        justify-content: flex-start;

    }

    

    .btn {

        width: auto;

        max-width: none;

    }

    

    .form-row {

        grid-template-columns: 1fr 1fr;

    }

    

    .download-content {

        grid-template-columns: 1fr 1fr;

        text-align: left;

    }

    

    .phone-mockup {

        width: 240px;

        height: 480px;

    }

    

    .footer-content {

        grid-template-columns: repeat(2, 1fr);

        text-align: left;

    }

    

    .footer-logo {

        justify-content: flex-start;

    }

    

    .social-links {

        justify-content: flex-start;

    }

}



/* Desktop Responsive (1024px and up) */

@media (min-width: 1024px) {

    .logo-img {

        width: 70px;

        height: 70px;

    }

    

    .logo-text h1 {

        font-size: 2rem;

    }

    

    .hero {

        padding: 6rem 0;

    }

    

    .hero-content h2 {

        font-size: 3rem;

    }

    

    .vaga-card {

        padding: 3rem;

    }

    

    .candidatura-form {

        padding: 3rem;

    }

    

    .phone-mockup {

        width: 280px;

        height: 560px;

    }

    

    .features-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    

    .footer-content {

        grid-template-columns: repeat(4, 1fr);

    }

    

    .section-header h2 {

        font-size: 2.5rem;

    }

}



/* Large Desktop (1200px and up) */

@media (min-width: 1200px) {

    .logo-img {

        width: 85px;

        height: 85px;

    }

    

    .logo-text h1 {

        font-size: 2.2rem;

    }

    

    .hero-content h2 {

        font-size: 3.5rem;

    }

    

    .vaga-info {

        grid-template-columns: repeat(2, 1fr);

    }

    

    .form-row {

        grid-template-columns: repeat(3, 1fr);

    }

    

    .features-grid {

        grid-template-columns: repeat(4, 1fr);

    }

}



/* Touch-friendly improvements */

@media (hover: none) and (pointer: coarse) {

    .btn {

        min-height: 48px;

    }

    

    .form-group input,

    .form-group select,

    .form-group textarea {

        min-height: 48px;

        font-size: 16px; /* Prevents zoom on iOS */

    }

    

    nav a {

        min-height: 44px;

    }

    

    .download-btn {

        min-height: 56px;

    }

}



/* Smooth scrolling */

html {

    scroll-behavior: smooth;

}



/* Focus states for accessibility */

.btn:focus,

input:focus,

select:focus,

textarea:focus {

    outline: 2px solid #4299e1;

    outline-offset: 2px;

}



/* Loading states */

.btn:disabled {

    opacity: 0.7;

    cursor: not-allowed;

    transform: none !important;

}



/* Animação de destaque para a seção de entrevista virtual */

@keyframes highlight {

    0% {

        transform: scale(1);

        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);

    }

    50% {

        transform: scale(1.02);

        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0.3);

    }

    100% {

        transform: scale(1);

        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);

    }

}



/* Estilo para a mensagem de destaque */

.highlight-message {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(72, 187, 120, 0.3);
    animation: slideInDown 0.5s ease-out;
}

.highlight-message i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.mandatory-app-notice {
    display: block;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #e53e3e;
    background-color: rgba(229, 62, 62, 0.1);
    padding: 0.5rem;
    border-radius: 4px;
    border-left: 3px solid #e53e3e;
}



@keyframes slideInDown {

    from {

        opacity: 0;

        transform: translateY(-30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* Success/Error Messages */

.success-message {

    background: linear-gradient(135deg, #48bb78, #38a169);

    color: white;

    padding: 1rem 1.5rem;

    border-radius: 10px;

    margin-bottom: 1.5rem;

    text-align: center;

    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);

}



.error-message {

    background: linear-gradient(135deg, #f56565, #e53e3e);

    color: white;

    padding: 1rem 1.5rem;

    border-radius: 10px;

    margin-bottom: 1.5rem;

    text-align: center;

    box-shadow: 0 4px 15px rgba(245, 101, 101, 0.3);

}



