:root {
    --primary-color: #ff9f43;
    --secondary-color: #ff6b6b;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.5);
    --text-color: #2d3436;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    overflow: hidden;
}

.page-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1514888286974-6c03e2ca1dba?q=80&w=2043&auto=format&fit=crop') no-repeat center center/cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25); 
    backdrop-filter: blur(2px);
}

.glass-card {
    position: relative;
    width: 380px; 
    padding: 25px 30px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    z-index: 10;
    text-align: center;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.icon-circle {
    width: 55px; 
    height: 55px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.4rem;
}

.logo-area h1 {
    font-size: 1.8rem; 
    color: var(--primary-color);
    margin-bottom: 5px;
}

.welcome-text h2 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.welcome-text p {
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.input-field {
    position: relative;
    margin-bottom: 12px;
}

.input-field i {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 0.9rem;
}

.input-field input {
    width: 100%;
    padding: 10px 40px 10px 12px; 
    border: 1px solid #ddd;
    border-radius: 12px;
    outline: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.input-field input:focus {
    border-color: var(--primary-color);
}

.btn-main {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 12px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-main:hover {
    background: #e68a2e;
    transform: translateY(-2px);
}

.divider {
    margin: 15px 0;
    font-size: 0.8rem;
    color: #999;
}

.google-btn {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
}

.google-btn:hover {
    background: #f9f9f9;
}

.form-footer {
    margin-top: 15px;
    font-size: 0.85rem;
}

.form-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
}