/* Modern UI/UX Styles */
body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.login-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    z-index: 10;
}

/* Abstract Background Elements */
.bg-shape {
    position: absolute;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.6;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: #0ea5e9;
    top: -10%;
    left: -10%;
    border-radius: 50%;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: #2dd4bf;
    bottom: -20%;
    right: -10%;
    border-radius: 50%;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.glass-card:hover {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
}

.logo-container img {
    max-width: 160px;
    filter: drop-shadow(0px 4px 6px rgba(0,0,0,0.3));
}

.welcome-text {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.welcome-text h2 {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.welcome-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.custom-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding: 12px 15px 12px 45px;
    border-radius: 10px;
    width: 100%;
    transition: all 0.3s;
    font-size: 1rem;
}

.custom-input:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: #38bdf8 !important;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.1);
    outline: none;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.input-icon {
    position: absolute;
    left: 15px;
    bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
}

.btn-modern {
    background: linear-gradient(135deg, #38bdf8, #0ea5e9);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    width: 100%;
    margin-top: 1rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(14, 165, 233, 0.4);
    cursor: pointer;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -3px rgba(14, 165, 233, 0.6);
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}
