﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f1b33, #1a2c4f);
    padding: 20px;
    position: relative;
    overflow: auto;
}

.container {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .container:hover {
        transform: translateY(-5px);
    }

.logo-container {
    display: flex;
    align-items: center;
    padding: 20px;
    background: rgba(255,255,255,0.95);
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: 1px solid rgba(30,60,114,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

    .logo-container:hover {
        transform: translateY(-3px);
    }

    .logo-container img {
        width: 200px;
        height: 200px;
        object-fit: contain;
        border-radius: 15px;
        padding: 8px;
        margin-right: 1.5rem;
        /*background: linear-gradient(45deg, #1e3c72, #2a5298);*/
        box-shadow: 0 5px 15px rgba(30,60,114,0.3);
        border: 2px solid rgba(255,255,255,0.2);
        transition: transform 0.3s ease;
    }

        .logo-container img:hover {
            transform: scale(1.05);
        }

.title-container {
    text-align: left;
    margin-left: 1.5rem;
}

h1 {
    font-size: 2.6rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 8px;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-weight: 800;
}

    h1::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80%;
        height: 3px;
        background: linear-gradient(90deg, #1e3c72 70%, transparent);
        border-radius: 2px;
        transition: width 0.3s ease;
    }

h5 {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 8px;
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    font-weight: 800;
}

    h5::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80%;
        height: 3px;
        background: linear-gradient(90deg, #1e3c72 70%, transparent);
        border-radius: 2px;
        transition: width 0.3s ease;
    }

.title-container:hover h1::after {
    width: 100%;
}

.subtitle {
    color: rgba(30,60,114,0.9);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-top: 0.75rem;
    padding-left: 5px;
    text-transform: uppercase;
    font-weight: 500;
}

    .subtitle::before {
        content: '📅';
        margin-right: 10px;
        font-size: 1em;
        vertical-align: middle;
    }

.input-group {
    margin-bottom: 2rem;
    position: relative;
}

.input-label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.input-field {
    width: 100%;
    padding: 1.4rem 1.5rem 1.4rem 4rem;
    font-size: 1.1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

    .input-field:focus {
        outline: none;
        border-color: #1e3c72;
        background: white;
        box-shadow: 0 0 12px rgba(30,60,114,0.15);
    }

        .input-field:focus + .input-label,
        .input-field:not(:placeholder-shown) + .input-label {
            top: -8px;
            left: 15px;
            font-size: 0.85rem;
            color: #1e3c72;
            font-weight: 500;
        }
.submit-btn {
    background: linear-gradient(45deg, #1e3c72, #2a5298);
    color: white;
    width: 100%;
    padding: 1.4rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: inline-block;
}


    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
    }
    .submit-btn::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transform: rotate(45deg);
        transition: all 0.6s ease;
    }

    .submit-btn:hover::after {
        left: 150%;
    }

.no-underline {
    text-decoration: none !important;
}
.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 1.2rem;
}

.bg-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(45deg, rgba(30,60,114,0.1), rgba(42,82,152,0.05));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-20px, -20px) rotate(2deg);
    }

    50% {
        transform: translate(20px, 20px) rotate(-2deg);
    }

    75% {
        transform: translate(-20px, 20px) rotate(2deg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.8rem;
    }

    .logo-container img {
        width: 80px;
        height: 80px;
        margin-right: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }
}
