body {
    font-family: 'Inter', sans-serif;
    /* Pastel colors from logo: Yellow, Pink, Blue, Purple */
    background: linear-gradient(135deg, #f6d365 0%, #fda085 33%, #84fab0 66%, #a18cd1 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #333;
    min-height: 100vh;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.text-color-1 {
    color: #E6B345;
}

/* Darker Yellow */
.text-color-2 {
    color: #E8887D;
}

/* Darker Pink */
.text-color-3 {
    color: #6BC2D6;
}

/* Darker Blue */
.text-color-4 {
    color: #9B82C6;
}

/* Darker Purple */

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    width: 100%;
    max-width: 600px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
    border-color: #63b3ed;
    background-color: #fff;
}

.btn {
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    border: none;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    /* Pastel colors from logo: Yellow, Pink, Blue, Purple */
    background: linear-gradient(135deg, #f6d365 0%, #fda085 33%, #84fab0 66%, #a18cd1 100%);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: #333;
    min-height: 100vh;
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.text-color-1 {
    color: #E6B345;
}

/* Darker Yellow */
.text-color-2 {
    color: #E8887D;
}

/* Darker Pink */
.text-color-3 {
    color: #6BC2D6;
}

/* Darker Blue */
.text-color-4 {
    color: #9B82C6;
}

/* Darker Purple */

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    width: 100%;
    max-width: 600px;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
    border-color: #63b3ed;
    background-color: #fff;
}

.btn {
    border-radius: 10px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    border: none;
}

.btn-primary:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-success {
    background: linear-gradient(to right, #43e97b 0%, #38f9d7 100%);
    border: none;
    color: #fff;
}

.btn-info {
    background: linear-gradient(to right, #48c6ef 0%, #6f86d6 100%);
    border: none;
}

/* Camera Modal Styles */
.camera-container {
    background-color: #000;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

#camera-feed {
    width: 100%;
    height: auto;
    display: block;
}