/* External CSS Links - keep these as imports if needed */
@import url('../vendors/feather/feather.css');
@import url('../vendors/mdi/css/materialdesignicons.min.css');
@import url('../vendors/ti-icons/css/themify-icons.css');
@import url('../vendors/font-awesome/css/font-awesome.min.css');
@import url('../vendors/typicons/typicons.css');
@import url('../vendors/simple-line-icons/css/simple-line-icons.css');
@import url('../vendors/css/vendor.bundle.base.css');
@import url('../vendors/bootstrap-datepicker/bootstrap-datepicker.min.css');
@import url('../css/style.css');

/* Internal CSS Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #0b0f19;
    background-image: 
        radial-gradient(at 50% 100%, rgba(0, 242, 254, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 0%, rgba(79, 172, 254, 0.1) 0px, transparent 50%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.circuit-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: 
        linear-gradient(rgba(0, 242, 254, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 254, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center;
    z-index: 1;
    opacity: 0.6;
}

.login-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    width: 100%;
    max-width: 450px;
    padding: 40px 35px;
    border-radius: 16px;
    border: 1px solid rgba(0, 242, 254, 0.2);
    box-shadow: 0 0 40px rgba(0, 242, 254, 0.1);
    text-align: center;
    z-index: 10;
    position: relative;
}

.logo-area {
    margin-bottom: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logo-area img {
    width: 45px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.6));
}

.logo-title {
    color: #00f2fe;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.6);
}

.form-grid {
    width: 100%;
    margin-top: 20px;
}

.custom-input-group {
    margin-bottom: 20px;
    position: relative;
}

.custom-input-group label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #4facfe;
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: all 0.3s ease;
}

.custom-input-group .icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.custom-input-group input {
    width: 100%;
    padding: 15px 20px 15px 52px;
    border: 1px solid rgba(79, 172, 254, 0.3);
    border-radius: 8px;
    outline: none;
    font-size: 16px;
    color: #fff;
    background: rgba(11, 15, 25, 0.8);
    transition: all 0.3s ease;
}

.custom-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.custom-input-group input:focus {
    border-color: #00f2fe;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3);
    background: rgba(11, 15, 25, 0.95);
}

.unique-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #0052D4 0%, #4364F7 50%, #6FB1FC 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(67, 100, 247, 0.5);
    transition: all 0.3s ease;
}

.unique-submit-btn:hover {
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.8);
    transform: translateY(-1px);
}

.unique-submit-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease-out;
    pointer-events: none;
}

.unique-submit-btn:active::before {
    transform: scale(1);
}

.signup-footer {
    margin-top: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.signup-footer a {
    color: #00f2fe;
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.signup-footer a:hover {
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
    color: #fff;
}

.hidden {
    display: none;
}

.icons {
    display: none;
}

/* Fix SweetAlert2 body padding issue */
body.swal2-padding-shown {
    padding-right: 0 !important;
}

html.swal2-shown {
    overflow: hidden !important;
}
