﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');



body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: none;
    font-family: 'Poppins', sans-serif; 
    overflow: hidden;
}


.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: backgroundSlideshow 32s infinite ease-in-out;
}

    .background::before {
        content: "";
        position: absolute;
        width: 0;
        height: 0;
        overflow: hidden;
        visibility: hidden;
        background-image: url('https://cdn.radar.istanbul/b31422d8-075a-40e4-931e-af5504fe0ac5.jpg'), url('https://cdn.radar.istanbul/000727b9-b292-44fa-9826-7e0a9f3218e0.jfif'), url('https://cdn.radar.istanbul/550f71e6-7290-4261-90ac-94934d65c318.jpg'), url('https://cdn.radar.istanbul/28084603-23ea-4e39-becd-4776a372d39f.jfif');
    }

.main {
    width: 400px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px); 
    padding: 25px;
    border-radius: 16px; 
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 4.25); 
    text-align: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease-in-out;
}

    .main:hover {
        box-shadow: 0px 12px 45px rgba(0, 0, 0, 0.2);
    }

h2 {
    font-size: 20px;
    font-weight: 600;
    color: #fff; 
    margin-bottom: 15px;
}


.k-textbox {
    width: 100% !important;
    margin-bottom: 12px;
    padding: 12px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transition: all 0.3s ease-in-out;
}

.k-focus {
    background: rgba(255, 255, 255, 0.2) !important;
}
    
    .k-textbox::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }


.k-button {
    width: 100%;
    background: linear-gradient(to right, #00C6FF, #0072FF); 
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-transform: uppercase;
}


    .k-button:hover {
        background: linear-gradient(to right, #0072FF, #00C6FF);
        transform: scale(1.05);
    }


.logo-container {
    text-align: center;
    margin-bottom: 15px; 
}

    .logo-container img {
        width: 350px; 
        height: auto;
        border-radius: 8px;
        transition: transform 0.3s ease-in-out;
    }

        
        .logo-container img:hover {
            transform: scale(1.1);
        }



@keyframes backgroundSlideshow {
    0% {
        background-image: url('https://cdn.radar.istanbul/b31422d8-075a-40e4-931e-af5504fe0ac5.jpg');
        opacity: 1;
    }

    18.75% {
        background-image: url('https://cdn.radar.istanbul/b31422d8-075a-40e4-931e-af5504fe0ac5.jpg');
        opacity: 1;
    }
    25% {
        background-image: url('https://cdn.radar.istanbul/000727b9-b292-44fa-9826-7e0a9f3218e0.jfif');
        opacity: 1;
    }

    43.75% {
        background-image: url('https://cdn.radar.istanbul/000727b9-b292-44fa-9826-7e0a9f3218e0.jfif');
        opacity: 1;
    }
    50% {
        background-image: url('https://cdn.radar.istanbul/550f71e6-7290-4261-90ac-94934d65c318.jpg');
        opacity: 1;
    }

    68.75% {
        background-image: url('https://cdn.radar.istanbul/550f71e6-7290-4261-90ac-94934d65c318.jpg');
        opacity: 1;
    }
    75% {
        background-image: url('https://cdn.radar.istanbul/28084603-23ea-4e39-becd-4776a372d39f.jfif');
        opacity: 1;
    }

    93.75% {
        background-image: url('https://cdn.radar.istanbul/28084603-23ea-4e39-becd-4776a372d39f.jfif');
        opacity: 1;
    }
    100% {
        background-image: url('https://cdn.radar.istanbul/b31422d8-075a-40e4-931e-af5504fe0ac5.jpg');
        opacity: 1;
    }
}
