@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,700,700italic);
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html, body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-size: 14px;
    font-weight: 300;
    color: #2d3748;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    min-height: 100%;
    height: 100%;
    display: block;
    background-attachment: fixed;
}

#page {     
    width: 100%;
    margin: 0 auto;
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

#footer {
    width: 100%;
    font-weight: bold;
    position: relative;
    z-index: 10;
    height: 3em;
    margin-top: -3em;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

h1 {
    margin: 0 0 1em 0;
    font-size: 2.8em;
    font-weight: 700;
    color: #1a202c;
}

h2 {
    margin: 0 0 .5em 0;
    font-size: 1.6em;
    font-weight: 700;
    line-height: 1.1em;
    color: #2d3748;
}

h3 {
    margin: 0 0 .5em 0;
    font-size: 1.3em;
    font-weight: 700;
    color: #4a5568;
}

h4 {
    margin: 0 0 1.5em 0;
    font-size: 1em;
    font-weight: 700;
    color: #718096;
}

a {
    color: #667eea;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #764ba2;
    text-decoration: none;
}

a:visited {
    color: #9f7aea;
}

/* Beautiful Gradient Header */
header {
    height: 90px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6B8DD6 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

header .logo {
    z-index: 1;
    position: absolute;
    float: left;
    width: 500px;
    height: 66px;
    top: 12px;
    left: 20px;
}

header .logo img {
    float: left;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

header .logo img:hover {
    transform: scale(1.05);
}

header #title {
    margin-left: 85px;
    margin-top: 18px;
    color: white;
    font-weight: 700;
    font-size: 24px;
    float: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

div.right {
    position: absolute;
    width: 40%;
    top: 130px;
    left: 60%;
}

div.right h1 {
    line-height: 1em;
    margin: 0 0 30px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

div.left {
    position: absolute;
    width: 40%;
    top: 130px;
    left: 10%;
}

.left img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.left img:hover {
    transform: scale(1.02);
}

.right form {
    position: relative;   
    margin: 0 auto 60px;
}

/* Enhanced Navigation */
nav {    
    float: right;
    top: 0px;
    left: 0px;
    padding: 25px 20px 0 0;
    width: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

nav form {
    float: right;
    margin: 0;
}

header label {
    font-weight: 500;
    margin-left: 10px;
    margin-right: 5px;
    color: white;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
}

/* Navigation Buttons - Enhanced */
nav input[type="image"] {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

nav input[type="image"]:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Text Input Styling */
.right #text_input {
    height: 45px;
    width: 300px;
    margin-bottom: 20px;
    border-radius: 12px !important;
    border: 2px solid #e2e8f0 !important;
    padding: 10px 15px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.right #text_input:focus {
    border-color: #667eea !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1), 0 4px 15px rgba(102, 126, 234, 0.2) !important;
    outline: none !important;
}

#input_block {
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: right 8px center;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: visible;
    transition: all 0.3s ease;
}

#input_block:focus-within {
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

/* Assets Section */
.assets {
    width: 100%;
    margin: 0 auto;
}

/* Profile Section */
.profile {
    width: 100%;
    min-height: 100%;
    overflow: hidden;
    position: relative;
}

.profile .content {
    width: 46%;
    margin: 0 10px;
    float: left;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.profile .content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.profile #report {
    margin: 15% 35% 0px 35%;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    padding: 12px 30px;
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.profile #report:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        height: auto;
        padding: 15px;
    }
    
    header .logo {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
    }
    
    header #title {
        margin-left: 0;
        margin-top: 10px;
        font-size: 18px;
    }
    
    nav {
        float: none;
        padding: 15px 0 0 0;
        justify-content: center;
    }
    
    .profile .content {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .profile #report {
        margin: 20px 20%;
    }
}
