﻿body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* background: linear-gradient(135deg, #e29fc9, #7aa7e9); */
    /*    background: linear-gradient(135deg, #e29fc9, #7aa7e9);*/
    height: 100vh;
    overflow: hidden;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
    color: #fff;
    width: 100%;
    max-width: 400px;
    position: relative;
}

.icon-circle {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 64, 0.7);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 2rem;
    backdrop-filter: blur(5px);
}

    .icon-circle img {
        width: 100%;
        object-fit: contain;
    }

.glass-input {
    background: rgba(255, 255, 255, 0.25);
    border: none;
    color: #fff;
    padding-left: 40px;
}

    .glass-input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.35);
        box-shadow: none;
        color: #fff;
    }

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: bold;
    border-radius: 10px;
    padding: 10px;
    border: none;
    transition: 0.3s;
    letter-spacing: 1px;
}

    .btn-glass:hover {
        background: rgba(255, 255, 255, 0.35);
        color: #fff;
    }

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.links {
    font-size: 0.9rem;
}

    .links a {
        color: #fff;
        text-decoration: none;
    }

        .links a:hover {
            text-decoration: underline;
        }

/*.bg-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
    background-size: cover;
    background-position: center;
    transition: background-image 1s ease-in-out;
}*/

.bg-slideshow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

    .bg-slideshow .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: 110%;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0;
        transition: opacity 2s ease-in-out, background-size 6s ease-in-out;
    }
