﻿
/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body */
body {
    font-family: 'Arial', sans-serif;
    background-color: #0D0D2B;
    color: #E0E0FF;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Container */
.container {
    width: 90%;
    max-width: 360px;
    background-color: #1E1E2F;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 20px;
}

.header .logo {
    width: 100%;
    margin-bottom: 10px;
}

.header h1 {
    font-size: 22px;
    color: #7499ee;
}

/* Intro Section */
.intro {
    text-align: center;
    margin-bottom: 20px;
}

.intro h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.intro p {
    font-size: 14px;
}

/* Users Section */
.users {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Input Section */
.input-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.input-section input {
    width: 80%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #7499ee;
    margin-bottom: 15px;
    background-color: #2B2B44;
    color: #E0E0FF;
}

.input-section button {
    width: 80%;
    padding: 12px;
    background: linear-gradient(45deg, #4B00B9, #7928CA);
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-section button:hover {
    background: linear-gradient(45deg, #7928CA, #fcfcfc);
}

/* Features Section */
.features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-card {
    background-color: #2B2B44;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    color: #7499ee;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Disclaimer */
.disclaimer {
    font-size: 12px;
    text-align: center;
    color: #E0E0FF;
    margin-top: 20px;
}
