﻿/*kullanıcı giriş ekranında header kısmını gizledik.*/
header {
    display:none;
}

:root {
    /* Primary Colors */
    --primary-blue: #0ea5e9;
    --primary-purple: #a855f7;
    --primary-lightblue: #0d9ad9;
    --primary-gradient: linear-gradient(135deg, var(--primary-blue), var(--primary-lightblue));
    /* Background Colors */
    --bg-light: #f8fafc;
    --bg-lighter: #f0f9ff;
    --bg-white: #ffffff;
    /* Text Colors */
    --text-dark: #0f172a;
    --text-gray: #64748b;
    --text-light: #94a3b8;
    /* Border Colors */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    /* Shadow Colors */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-blue: 0 15px 35px rgba(14, 165, 233, 0.3);
    /* Transition */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;
}

body {
    /*background: linear-gradient(135deg, #6e8efb, #a777e3);*/
}

.container-entry {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    text-align: center;
    border: 1px solid #6e8efb
}

.header-entry {
    background: var(--primary-gradient);
    color: white;
    padding: 0px 0px 25px;
}

.app-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

h1 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 5px;
}

.tagline {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.content {
    padding: 25px;
}

.quote {
    font-style: italic;
    color: #6c757d;
    margin: 20px 0;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    font-size: 15px;
}

.feature {
    display: flex;
    align-items: center;
    margin: 20px 0;
    text-align: left;
}

.feature-icon {
    background: var(--primary-gradient);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 15px;
}

.action-buttons {
    display: grid;
    gap: 12px;
    margin-top: 25px;
    /*flex-wrap: wrap;*/
}

.btn {
    display: block;
    padding: 15px;
    border-radius: 10px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
}

    .btn-primary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: var(--shadow-xl);
    }

.btn-secondary {
    background-color: transparent;
    color: #0d9ad9;
    border: 2px solid #0d9ad9;
}

    .btn-secondary:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(110, 142, 251, 0.4);
        color: #0d9ad9;
        background-color: transparent;
        border: 2px solid #0d9ad9;
    }

.border-dotted {
    border: 1px dotted;
}


@media (max-width: 480px) {
    .container {
        border-radius: 15px;
    }

    .header {
        padding: 25px 15px 15px;
        background: linear-gradient(134deg, #8c34db, #2888c7);
        color: white !important;
        border: 1px solid rgba(255, 255, 255, 500) !important;
        border-radius: 10px;
    }

    .content {
        padding: 20px 15px;
    }
}
