main {
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
}

/* Login page specific styles with liquid glass theme */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2vh;
}

.login-container .glass-modal {
    width: 50vw;
}

.login-logo {
    max-width: 80vw;
    max-height: 20vh;
    height: auto;
    margin: 0 auto 2vh;
    display: block;
}

.input-group {
    margin-bottom: 2vh;
}

.input-group label {
    display: block;
    margin-bottom: 1vh;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
}

.input-with-icon i.fa-user,
.input-with-icon i.fa-lock {
    position: absolute;
    left: 1.5vh;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 1.2rem;
    pointer-events: none;
    z-index: 1;
}

.input-with-icon input {
    width: 100%;
    padding: 1.5vh 5vh 1.5vh 4.5vh;
    border: 2px solid var(--popup-glass-border);
    border-radius: var(--border-radius);
    background: var(--popup-overlay-glass-bg);
    color: var(--popup-text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.input-with-icon input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.3);
}

.input-with-icon input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.keyboard-trigger {
    position: absolute;
    right: 1.5vh;
    color: var(--text-color);
    opacity: 0.7;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.keyboard-trigger:hover {
    opacity: 1;
    color: var(--primary-color);
    transform: scale(1.1);
}

.glass-modal-title {
    text-align: center;
    font-size: 3vh;
}

.glass-modal-footer {
    padding-top: 2vh;
}

.glass-modal-footer button[type="submit"] {
    width: 100%;
    padding: 1.5vh;
    font-size: 1.1rem;
    font-weight: 600;
}
